Put debug code behind DEBUG define

This commit is contained in:
Juhani Krekelä 2022-02-24 21:19:02 +02:00
parent b000857bb4
commit 0661eb0f06
1 changed files with 29 additions and 25 deletions

View File

@ -19,7 +19,7 @@ select_target:
mov bp, rng_output mov bp, rng_output
call store32 call store32
; Multiply rng output by number of targer words ; Multiply rng output by number of target words
xor si, si xor si, si
xor dx, dx xor dx, dx
xor ax, ax xor ax, ax
@ -31,8 +31,10 @@ select_target:
loop .multiply_loop loop .multiply_loop
mov ax, si mov ax, si
%ifdef DEBUG
call hexprint16 call hexprint16
call newline call newline
%endif
load_target: load_target:
shl si, 1 shl si, 1
@ -657,6 +659,7 @@ add32:
adc dx, [addr32 + 2] adc dx, [addr32 + 2]
ret ret
%ifdef DEBUG
hexprint32: hexprint32:
xchg ax, dx xchg ax, dx
call hexprint16 call hexprint16
@ -688,6 +691,7 @@ hexprint4:
pop ax pop ax
ret ret
%endif
section .data section .data
target times 5 db 0 target times 5 db 0