mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
14 lines
408 B
NASM
Executable File
14 lines
408 B
NASM
Executable File
;-------------------------------
|
|
; Just loop in place - CPU speed test.
|
|
; Also has two blocks - blockloader test.
|
|
;-------------------------------
|
|
org 0100 ;
|
|
start nop ;
|
|
jmp other ;
|
|
;
|
|
org 0104 ;
|
|
other law 0111 ;
|
|
hlt ;
|
|
;-------------------------------
|
|
end start
|