Files
SplitBit-Emulator/Programs/testPrograms/mathTest.asm
T
Anachronaut 5e854ee7f9 Updated test programs.
Test programs now work correctly with the latest CPU core changes.
2024-11-20 13:59:40 -05:00

32 lines
417 B
NASM

; A test for the new math subroutines.
#Include ../Libraries/print.asm
#Include ../Libraries/int8.asm
#Include ../Libraries/int16.asm
#Program
start:
SETD SomeInt16Operands
CALL int16div
LDA
CALL printByteHex
INCD
LDA
CALL printByteHex
CALL blankSpace
INCD
LDA
CALL printByteHex
INCD
LDA
CALL printByteHex
end:
CALL lineFeed
HALT
#Data
SomeInt16Operands:
0x01 0xF4
0x00 0x0A