From dddc44a59e3e393d5440a06e2b0535aeb1304f77 Mon Sep 17 00:00:00 2001 From: Robert de Bath Date: Sat, 23 Oct 2010 17:32:23 +0200 Subject: Import Dev86src-0.16.18.tar.gz --- tests/hello_world.s | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tests/hello_world.s (limited to 'tests/hello_world.s') diff --git a/tests/hello_world.s b/tests/hello_world.s new file mode 100644 index 0000000..8932287 --- /dev/null +++ b/tests/hello_world.s @@ -0,0 +1,18 @@ + +.text +entry start +start: +mov ax,#4 +mov bx,#1 +mov cx,#hello +mov dx,#endhello-hello +int $80 + +mov bx,#0 +mov ax,#1 +int $80 + +.data +hello: + .ascii "Hello world!\n" +endhello: -- cgit v1.2.1