more userlaand stuff

This commit is contained in:
2026-06-17 18:16:47 -05:00
parent 0cb7311911
commit 7d34fbbd02
11 changed files with 116 additions and 13 deletions

View File

@@ -1,8 +1,16 @@
.code32
.section .text
.global _start
_start:
mov $1, %eax
add $1, %eax
mov $(message), %ebx
mov $0, %ecx
mov $0, %edx
int $0x80
loop:
jmp loop
jmp loop
.section .data
message:
.asciz "Hello, Userland!\n";