Skip to content

Commit

Permalink
Moved files around
Browse files Browse the repository at this point in the history
  • Loading branch information
tebl committed Jan 21, 2020
1 parent 5392ead commit a5fcf4b
Show file tree
Hide file tree
Showing 17 changed files with 3,857 additions and 4,722 deletions.
514 changes: 0 additions & 514 deletions RC6502 ROM/firmware/Atari 2600 Musicplayer.HEX

This file was deleted.

514 changes: 0 additions & 514 deletions RC6502 ROM/firmware/Atari 2600 VSYNC.HEX

This file was deleted.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Expand Up @@ -174,4 +174,4 @@ char send_ascii(char c) {
void loop() {
serial_receive();
serial_transmit();
}
}
11 changes: 11 additions & 0 deletions software/examples/VDU-Notes/VDU Alphanumeric/.project
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>VDU Alphanumeric</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>
66 changes: 66 additions & 0 deletions software/examples/VDU-Notes/VDU Alphanumeric/vdu_alphanumeric.asm
@@ -0,0 +1,66 @@
processor 6502

PAGECTR EQU $0030
ZPPTR EQU $0031
ZPPTR_LSB EQU $0031
ZPPTR_MSB EQU $0032

VDU_BASE EQU $8000
VDU_REG_0 EQU $8800
VDU_REG_1 EQU $8C00

; Main program
org $F000
INIT lda #$00
STA VDU_REG_0
STA VDU_REG_1

JSR CLEAR
JSR SET_MOTD
DONE JMP DONE

; Clear screen routine
CLEAR LDY #$80
LDX #$00
LDA #1
JSR CLEAR_RAM
RTS

CLEAR_RAM STA PAGECTR ;set pages to clear (1-255, 0 = 256)
STX ZPPTR_LSB ;set start address LSB
STY ZPPTR_MSB ;set start address MSB
LDA #$20 ;clear value -- could be anything
LDY #0 ;index

NEXT_BYTE STA (ZPPTR_LSB),y
INY
BNE NEXT_BYTE ;next location

DEC PAGECTR ;one less page to clear
BEQ CLEAR_DONE ;done

INC ZPPTR_MSB ;next page
BNE NEXT_BYTE ;more pages remaining

CLEAR_DONE RTS


; Write message to the display
SET_MOTD LDX #0
NEXT_CHAR LDA MESSAGE,x
CMP #0
BEQ MOTD_DONE

STA VDU_BASE,x
INX
JMP NEXT_CHAR
MOTD_DONE RTS


MESSAGE byte 12,03,36,35,30,32,20,16,04,15,0


; CPU initialization
org $FCCC ; Set initialization vectors
word INIT
word INIT
Binary file not shown.
67 changes: 67 additions & 0 deletions software/examples/VDU-Notes/VDU Alphanumeric/vdu_alphanumeric.lst
@@ -0,0 +1,67 @@
------- FILE D:\owncloud\Documents\Projects\RC6502\RC6502 VDU\code\VDU Alphanumeric\vdu_alphanumeric.asm LEVEL 1 PASS 2
1 fcce processor 6502
2 fcd0 ????
3 fcd0 ???? 00 30 PAGECTR EQU $0030
4 fcd0 ???? 00 31 ZPPTR EQU $0031
5 fcd0 ???? 00 31 ZPPTR_LSB EQU $0031
6 fcd0 ???? 00 32 ZPPTR_MSB EQU $0032
7 fcd0 ????
8 fcd0 ???? 80 00 VDU_BASE EQU $8000
9 fcd0 ???? 88 00 VDU_REG_0 EQU $8800
10 fcd0 ???? 8c 00 VDU_REG_1 EQU $8C00
11 fcd0 ????
12 fcd0 ???? ; Main program
13 f000 org $F000
14 f000 a9 00 INIT lda #$00
15 f002 8d 00 88 STA VDU_REG_0
16 f005 8d 00 8c STA VDU_REG_1
17 f008
18 f008 20 11 f0 JSR CLEAR
19 f00b 20 33 f0 JSR SET_MOTD
20 f00e 4c 0e f0 DONE JMP DONE
21 f011
22 f011 ; Clear screen routine
23 f011 a0 80 CLEAR LDY #$80
24 f013 a2 00 LDX #$00
25 f015 a9 01 LDA #1
26 f017 20 1b f0 JSR CLEAR_RAM
27 f01a 60 RTS
28 f01b
29 f01b 85 30 CLEAR_RAM STA PAGECTR ;set pages to clear (1-255, 0 = 256)
30 f01d 86 31 STX ZPPTR_LSB ;set start address LSB
31 f01f 84 32 STY ZPPTR_MSB ;set start address MSB
32 f021 a9 20 LDA #$20 ;clear value -- could be anything
33 f023 a0 00 LDY #0 ;index
34 f025
35 f025 91 31 NEXT_BYTE STA (ZPPTR_LSB),y
36 f027 c8 INY
37 f028 d0 fb BNE NEXT_BYTE ;next location
38 f02a
39 f02a c6 30 DEC PAGECTR ;one less page to clear
40 f02c f0 04 BEQ CLEAR_DONE ;done
41 f02e
42 f02e e6 32 INC ZPPTR_MSB ;next page
43 f030 d0 f3 BNE NEXT_BYTE ;more pages remaining
44 f032
45 f032 60 CLEAR_DONE RTS
46 f033
47 f033
48 f033 ; Write message to the display
49 f033 a2 00 SET_MOTD LDX #0
50 f035 bd 44 f0 NEXT_CHAR LDA MESSAGE,x
51 f038 c9 00 CMP #0
52 f03a f0 07 BEQ MOTD_DONE
53 f03c
54 f03c 9d 00 80 STA VDU_BASE,x
55 f03f e8 INX
56 f040 4c 35 f0 JMP NEXT_CHAR
57 f043 60 MOTD_DONE RTS
58 f044
59 f044
60 f044 0c 03 24 23*MESSAGE byte.b 12,03,36,35,30,32,20,16,04,15,0
61 f04f
62 f04f
63 f04f ; CPU initialization
64 fccc org $FCCC ; Set initialization vectors
65 fccc 00 f0 word.w INIT
66 fcce 00 f0 word.w INIT
19 changes: 19 additions & 0 deletions software/examples/VDU-Notes/VDU Alphanumeric/vdu_alphanumeric.sym
@@ -0,0 +1,19 @@
--- Symbol List (sorted by symbol)
CLEAR f011 (R )
CLEAR_DONE f032 (R )
CLEAR_RAM f01b (R )
DONE f00e (R )
INIT f000 (R )
MESSAGE f044 (R )
MOTD_DONE f043 (R )
NEXT_BYTE f025 (R )
NEXT_CHAR f035 (R )
PAGECTR 0030 (R )
SET_MOTD f033 (R )
VDU_BASE 8000 (R )
VDU_REG_0 8800 (R )
VDU_REG_1 8c00 (R )
ZPPTR 0031
ZPPTR_LSB 0031 (R )
ZPPTR_MSB 0032 (R )
--- End of Symbol List.
File renamed without changes.

0 comments on commit a5fcf4b

Please sign in to comment.