more tests directory, fix missing tests

This commit is contained in:
Brian Seymour 2020-06-08 20:54:21 -05:00
parent e21173173f
commit 0b85a84877
24 changed files with 43 additions and 43 deletions

16
lxc/tests/test.nasm Normal file
View 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