0265810d9a
Signed-off-by: Chloe M <chloe@mensia.org>
15 lines
172 B
NASM
15 lines
172 B
NASM
;;
|
|
;; Copyright (c) 2026, Chloe M.
|
|
;; Provided under the BSD-3 clause.
|
|
;;
|
|
|
|
[org 0x9000]
|
|
[global _start]
|
|
|
|
_start:
|
|
cli
|
|
hlt
|
|
jmp _start
|
|
|
|
times 4096 - ($ - $$) db 0
|