summaryrefslogtreecommitdiff
path: root/src/user/hello/hello.asm
diff options
context:
space:
mode:
authorBenji Dial <benji6283@gmail.com>2020-09-13 17:12:29 -0400
committerBenji Dial <benji6283@gmail.com>2020-09-13 17:12:29 -0400
commit5481848e27fdd4fc859def9841a0283665531a46 (patch)
tree990a8df008214d85141a3bd10bd96898e64b0c37 /src/user/hello/hello.asm
parent1e4a254674f668839e5de273916024c16814b045 (diff)
downloadportland-os-5481848e27fdd4fc859def9841a0283665531a46.tar.gz
fixed some paging bugs, added fault handlers and new programs
Diffstat (limited to 'src/user/hello/hello.asm')
-rw-r--r--src/user/hello/hello.asm14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/user/hello/hello.asm b/src/user/hello/hello.asm
new file mode 100644
index 0000000..65d32be
--- /dev/null
+++ b/src/user/hello/hello.asm
@@ -0,0 +1,14 @@
+bits 32
+
+global _entry
+
+section .text
+_entry:
+ mov eax, 0x5
+ mov ebx, hello
+ int 0x30
+
+ int 0x38
+
+section .data
+hello db "Hello, world!", 0x0a, 0 \ No newline at end of file