-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NXTP dot command now sets 115200 baud using a prescaler derived from …
…the current video timing.
- Loading branch information
1 parent
cb31583
commit 348f495
Showing
10 changed files
with
887 additions
and
30 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -135,4 +135,3 @@ CopyLDIR macro(SourceAddr, DestAddr, Size) | |
ldir | ||
mend | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
; version.asm | ||
; | ||
; Auto-generated by ZXVersion.exe | ||
; On 19 Jan 2020 at 18:01 | ||
; On 20 Jan 2020 at 12:31 | ||
|
||
BuildNo macro() | ||
db "56" | ||
db "57" | ||
mend | ||
|
||
BuildNoValue equ "56" | ||
BuildNoWidth equ 0 + FW5 + FW6 | ||
BuildNoValue equ "57" | ||
BuildNoWidth equ 0 + FW5 + FW7 | ||
|
||
|
||
|
||
BuildDate macro() | ||
db "19 Jan 2020" | ||
db "20 Jan 2020" | ||
mend | ||
|
||
BuildDateValue equ "19 Jan 2020" | ||
BuildDateWidth equ 0 + FW1 + FW9 + FWSpace + FWJ + FWa + FWn + FWSpace + FW2 + FW0 + FW2 + FW0 | ||
BuildDateValue equ "20 Jan 2020" | ||
BuildDateWidth equ 0 + FW2 + FW0 + FWSpace + FWJ + FWa + FWn + FWSpace + FW2 + FW0 + FW2 + FW0 | ||
|
||
|
||
|
||
BuildTime macro() | ||
db "18:01" | ||
db "12:31" | ||
mend | ||
|
||
BuildTimeValue equ "18:01" | ||
BuildTimeWidth equ 0 + FW1 + FW8 + FWColon + FW0 + FW1 | ||
BuildTimeValue equ "12:31" | ||
BuildTimeWidth equ 0 + FW1 + FW2 + FWColon + FW3 + FW1 | ||
|
||
|
||
|
||
BuildTimeSecs macro() | ||
db "18:01:02" | ||
db "12:31:43" | ||
mend | ||
|
||
BuildTimeSecsValue equ "18:01:02" | ||
BuildTimeSecsWidth equ 0 + FW1 + FW8 + FWColon + FW0 + FW1 + FWColon + FW0 + FW2 | ||
BuildTimeSecsValue equ "12:31:43" | ||
BuildTimeSecsWidth equ 0 + FW1 + FW2 + FWColon + FW3 + FW1 + FWColon + FW4 + FW3 |