mirror of
https://github.com/engineer-man/piston.git
synced 2025-05-14 07:36:28 +02:00
rename tests so they make more sense
This commit is contained in:
parent
ca59f7e882
commit
e3473f99df
29 changed files with 50 additions and 50 deletions
18
lxc/tests/nasm64.nasm
Normal file
18
lxc/tests/nasm64.nasm
Normal file
|
@ -0,0 +1,18 @@
|
|||
SECTION .data
|
||||
good: db "good", 0x0a, 0x0
|
||||
txtlen: equ $ - good
|
||||
|
||||
SECTION .text
|
||||
GLOBAL _start
|
||||
|
||||
_start:
|
||||
;sys_write
|
||||
mov rax, 1
|
||||
mov rdi, 1
|
||||
mov rsi, good
|
||||
mov rdx, txtlen
|
||||
syscall
|
||||
;sys_exit
|
||||
mov rax, 60
|
||||
mov rdi, 0
|
||||
syscall
|
Loading…
Add table
Add a link
Reference in a new issue