6 lines
228 B
NASM
6 lines
228 B
NASM
; comments are ignored
|
|
; This is a very simple test file for an assemblier.
|
|
mov r1, 5 ; move the immediate value 5 into r1
|
|
add r1,5 ; add 5 into r1
|
|
int 21 ; maybe that will call some string drawing BIOS-like routine
|
|
ret |