mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
12 lines
332 B
NASM
Executable File
12 lines
332 B
NASM
Executable File
;-------------------------------
|
|
; Just loop in place - CPU speed test.
|
|
;-------------------------------
|
|
org 0100 ;
|
|
start nop ;
|
|
jmp end ;
|
|
end hlt ;
|
|
org 0200 ;
|
|
hlt ;
|
|
;-------------------------------
|
|
end start
|