Upload files to "/"

This commit is contained in:
visionmercer 2026-02-27 10:48:18 +00:00
commit c2f8061832

16
cls.s Normal file
View 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