Skip to content

Commit

Permalink
Accidentally committed code for used for testing synbol redefinition …
Browse files Browse the repository at this point in the history
…reporting in Zeus.
  • Loading branch information
Threetwosevensixseven committed Feb 7, 2020
1 parent 3856d11 commit 96ac873
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
Binary file modified dot/NXTP
Binary file not shown.
4 changes: 2 additions & 2 deletions src/asm/vars.asm
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ ResponseStart: dw $0000
ResponseLen: dw $0000
Prescaler: ds 3
Buffer: ds 256
BufferLen equ $-BufferLen
BufferLen equ $-Buffer
MsgBuffer: ds 256
MsgBufferLen equ $-MsgBufferLen
MsgBufferLen equ $-MsgBuffer
DateBuffer db "\"00/00/0000\"", 0
DateBufferInt equ DateBuffer+1
TimeBuffer db "\"00:00:00\"", 0
Expand Down
26 changes: 13 additions & 13 deletions src/asm/version.asm
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
; version.asm
;
; Auto-generated by ZXVersion.exe
; On 06 Feb 2020 at 12:25
; On 07 Feb 2020 at 12:37

BuildNo macro()
db "64"
db "65"
mend

BuildNoValue equ "64"
BuildNoWidth equ 0 + FW6 + FW4
BuildNoValue equ "65"
BuildNoWidth equ 0 + FW6 + FW5



BuildDate macro()
db "06 Feb 2020"
db "07 Feb 2020"
mend

BuildDateValue equ "06 Feb 2020"
BuildDateWidth equ 0 + FW0 + FW6 + FWSpace + FWF + FWe + FWb + FWSpace + FW2 + FW0 + FW2 + FW0
BuildDateValue equ "07 Feb 2020"
BuildDateWidth equ 0 + FW0 + FW7 + FWSpace + FWF + FWe + FWb + FWSpace + FW2 + FW0 + FW2 + FW0



BuildTime macro()
db "12:25"
db "12:37"
mend

BuildTimeValue equ "12:25"
BuildTimeWidth equ 0 + FW1 + FW2 + FWColon + FW2 + FW5
BuildTimeValue equ "12:37"
BuildTimeWidth equ 0 + FW1 + FW2 + FWColon + FW3 + FW7



BuildTimeSecs macro()
db "12:25:14"
db "12:37:04"
mend

BuildTimeSecsValue equ "12:25:14"
BuildTimeSecsWidth equ 0 + FW1 + FW2 + FWColon + FW2 + FW5 + FWColon + FW1 + FW4
BuildTimeSecsValue equ "12:37:04"
BuildTimeSecsWidth equ 0 + FW1 + FW2 + FWColon + FW3 + FW7 + FWColon + FW0 + FW4

0 comments on commit 96ac873

Please sign in to comment.