-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyn600.s
43 lines (42 loc) · 1.55 KB
/
syn600.s
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
; Screen Examples, User prompts
;
; "D/C/W/M ?" <--- OLD
; "D/C/W/M/X" <--- NEW
; D)isk --- Existing Disk boot routine
; C)old start --- Existing Cold start basic
; W)arm Start --- Existing Warm start basic
; M)onitor --- Existing Monitor
; L) Load --- Load from serial port
; .) Set ADDR mode 0000 -> FFFF
; /) Set ADDR mode 00 ---> FF
; <Return> to skip to next ADDR
; G) Start execution at ADDR
; X)modem
; R)eceive --- Xmodem Recv, First 16 bits is the Start ADDR
; S)end --- Xmodem Send, First 16 bits is the Start ADDR
; B)asic send/save --- Is basically Xmodem Send with start set to $0000 --> End of BASIC prog
;
;
;
; Note: SB3 has the UART CLK @ 153.6k which means a Div-1 Baud rate of 153600
;
; ---------------------------------------------------------------------------
.setcpu "6502"
.segment "CODE"
.org $F800
;
; Set to 1 to get **OLD** IRQ/NMI behaviour
.define _OLD_IRQ_BEHAVIOUR_ 1
;
; ---------------------------------------------------------------------------
.include "./c1p_std.inc" ; Standard defines
;
;
; ---------------------------------------------------------------------------
.include "./xmodem.s" ; The X-Modem code
;
;
;
.include "./syn600-FC00.s" ; The old syn600 code + my changes
;
;