File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change 4
4
;; there is a supported UART -- You should check the addresses in your
5
5
;; source file for the UART to make shure they align with your architecture
6
6
7
+ ;; Load this into MON09 or ASSIST09 with 'L' command by pasteing the .S19
8
+ ;; into the terminal.
9
+
7
10
;; lets enable 6309 since the CPU is required for the architecture of the computer
8
11
h6309 EQU 1
9
-
10
- ORG $1000
11
-
12
+ ORG $1000 ; Jump to this location with G 1000 in MON09 or ASSIST9
13
+ CONFIG:
12
14
ifdef h6309
13
- ldmd #1 ; h6309 native mode
15
+ LDMD #1 ; h6309 native mode
14
16
endif
15
17
16
18
;; main loop
@@ -44,14 +46,15 @@ loop:
44
46
BNE loop ; If not, continue
45
47
LEAS 5 ,S ; Deallocate stack
46
48
47
-
49
+ DONE:
48
50
ifdef h6309
49
- ldmd #0 ; h6809 emulation mode
51
+ LDMD #0 ; h6809 emulation mode
50
52
endif
51
53
52
54
JMP [$FFFE ] ; Jump to reset vector
53
55
54
- ;; includes
56
+ ;; includes uart and multi-mandelbrot for 24 bit fp math for optimal results.
57
+
55
58
INCLUDE "68b50.asm"
56
59
57
60
You can’t perform that action at this time.
0 commit comments