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
16
lxc/tests/nasm.nasm
Normal file
16
lxc/tests/nasm.nasm
Normal file
|
@ -0,0 +1,16 @@
|
|||
SECTION .DATA
|
||||
good: db 'good',10
|
||||
txtlen: equ $-good
|
||||
|
||||
SECTION .TEXT
|
||||
GLOBAL _start
|
||||
|
||||
_start:
|
||||
mov eax,4
|
||||
mov ebx,1
|
||||
mov ecx,good
|
||||
mov edx,txtlen
|
||||
int 80h
|
||||
mov eax,1
|
||||
mov ebx,0
|
||||
int 80h
|
Loading…
Add table
Add a link
Reference in a new issue