Skip to content

Commit

Permalink
Error messages are now printed in the top screen as well as the bottom.
Browse files Browse the repository at this point in the history
  • Loading branch information
Threetwosevensixseven committed Dec 25, 2019
1 parent a5b0186 commit 94c62b3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
Binary file modified dot/NXTP
Binary file not shown.
3 changes: 3 additions & 0 deletions src/asm/esp.asm
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,9 @@ HandleError:
Stop: Border(2)
jr Stop
else
push hl
call PrintRst16Error
pop hl
jp Return.WithCustomError ; Straight to the error handing exit routine
endif
Rollover:
Expand Down
20 changes: 10 additions & 10 deletions src/asm/version.asm
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
; version.asm
;
; Auto-generated by ZXVersion.exe
; On 25 Dec 2019 at 17:17
; On 25 Dec 2019 at 17:30

BuildNo macro()
db "41"
db "42"
mend

BuildNoValue equ "41"
BuildNoWidth equ 0 + FW4 + FW1
BuildNoValue equ "42"
BuildNoWidth equ 0 + FW4 + FW2



Expand All @@ -22,17 +22,17 @@ BuildDateWidth equ 0 + FW2 + FW5 + FWSpace + FWD + FWe + FWc + FWSpace


BuildTime macro()
db "17:17"
db "17:30"
mend

BuildTimeValue equ "17:17"
BuildTimeWidth equ 0 + FW1 + FW7 + FWColon + FW1 + FW7
BuildTimeValue equ "17:30"
BuildTimeWidth equ 0 + FW1 + FW7 + FWColon + FW3 + FW0



BuildTimeSecs macro()
db "17:17:59"
db "17:30:20"
mend

BuildTimeSecsValue equ "17:17:59"
BuildTimeSecsWidth equ 0 + FW1 + FW7 + FWColon + FW1 + FW7 + FWColon + FW5 + FW9
BuildTimeSecsValue equ "17:30:20"
BuildTimeSecsWidth equ 0 + FW1 + FW7 + FWColon + FW3 + FW0 + FWColon + FW2 + FW0

0 comments on commit 94c62b3

Please sign in to comment.