We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80ad42d commit 5103bdfCopy full SHA for 5103bdf
2 files changed
vc83_serial/vc83_serial.inc
@@ -2,7 +2,7 @@
2
;
3
; SPDX-License-Identifier: MIT
4
5
-UART_BASE := $C100
+UART_BASE := $D100
6
UART_TX_LEVEL := UART_BASE + 0
7
UART_RX_LEVEL := UART_BASE + 1
8
UART_TX_DATA := UART_BASE + 2
vc83_serial/vc83_serial_startup.s
@@ -10,13 +10,6 @@ startup:
10
cld ; Clear decimal flag
11
ldx #$FF
12
txs ; Initialize the stack to $FF
13
-
14
- ; Map $Cxxx to $30xxx
15
- ; The system uses ZP $02 to map $Cxxx to 20-bit addresses.
16
- ; $30100 is in the range mapped by $30.
17
- lda #$30
18
- sta $02
19
20
jsr initialize_target
21
jsr main
22
@halt:
0 commit comments