File tree Expand file tree Collapse file tree 4 files changed +19
-11
lines changed Expand file tree Collapse file tree 4 files changed +19
-11
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,12 @@ What you don't get:
33
33
- sysgen, format etc
34
34
- no bugs
35
35
36
+ ** Important note:** the NC200 runs in ` im 1 ` mode, which means that all
37
+ interrupts go through rst 0x38. Unfortunately this is the default system call
38
+ used by debuggers like DDT and SID, so you'll need to patch them to use a
39
+ different one. The supplied copy of ` z8e ` has been preconfigured for the NC200
40
+ and will work out of the box.
41
+
36
42
37
43
How to use it
38
44
-------------
Original file line number Diff line number Diff line change 1
- z180 equ false
2
- conterm equ adm3a
3
- auxterm equ none
4
- CPM3 equ false
5
- SCRHT equ 18
1
+ z180 equ false
2
+ conterm equ adm3a
3
+ auxterm equ none
4
+ CPM3 equ false
5
+ SCRHT equ 18
6
+ DFLTRSTVEC equ 30h
6
7
Original file line number Diff line number Diff line change @@ -463,7 +463,7 @@ getSCB equ 49
463
463
464
464
export rstVec
465
465
;rstVec:
466
- defb 38h ;Default (but patchable) breakpoint vector
466
+ defb DFLTRSTVEC ; fault (but patchable) breakpoint vector
467
467
468
468
export coMask
469
469
;coMask:
Original file line number Diff line number Diff line change 1
- z180 equ true
2
- conterm equ adm3a
3
- auxterm equ none
4
- CPM3 equ false
5
- SCRHT equ 26
1
+ z180 equ true
2
+ conterm equ adm3a
3
+ auxterm equ none
4
+ CPM3 equ false
5
+ SCRHT equ 26
6
+ DFLTRSTVEC equ 38h
6
7
You can’t perform that action at this time.
0 commit comments