Created
April 2, 2024 20:23
-
-
Save zaerl/66c0367d354a3db84e54fafc29b5b549 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BITS 16 | |
start: | |
mov ax, 07C0h | |
add ax, 288 | |
mov ss, ax | |
mov sp, 4096 | |
; Have fun here! | |
idle_loop: | |
jmp idle_loop | |
times 510 - ($ - $$) db 0 | |
dw 0xAA55 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment