Upload files to "/"
This commit is contained in:
parent
77c65cf91a
commit
c2f8061832
1 changed files with 16 additions and 0 deletions
16
cls.s
Normal file
16
cls.s
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
global _start
|
||||||
|
|
||||||
|
section .rodata
|
||||||
|
msg: db 27,"[","H",27,"[","2","J"
|
||||||
|
|
||||||
|
section .text
|
||||||
|
_start:
|
||||||
|
mov rax, 1
|
||||||
|
mov rdi, 1
|
||||||
|
mov rsi, msg
|
||||||
|
mov rdx, 12
|
||||||
|
syscall
|
||||||
|
|
||||||
|
mov rax, 60
|
||||||
|
mov rdi, 0
|
||||||
|
syscall
|
||||||
Loading…
Add table
Add a link
Reference in a new issue