[4f508e6] | 1 | | ------------------------------------------------------------------------------
|
---|
| 2 | | rtraps.s -- define ROMP debug trap
|
---|
| 3 | | Version 7 -- 1988-01-12 -- Copyright 1987, 1988 by D.N. Lynx Crowe
|
---|
| 4 | | ------------------------------------------------------------------------------
|
---|
[f40a309] | 5 | .text
|
---|
[4f508e6] | 6 |
|
---|
[f40a309] | 7 | .xdef _trap15
|
---|
[4f508e6] | 8 |
|
---|
[f40a309] | 9 | .xref _rompbp
|
---|
[4f508e6] | 10 |
|
---|
[f40a309] | 11 | .xref tr1sav,tr13sav,tr14sav
|
---|
| 12 | .xref tr1rmp,tr13rmp,tr14rmp
|
---|
[4f508e6] | 13 |
|
---|
| 14 | BUCHLA = 1 | IPL value: 0 = NASA , 1 = Buchla
|
---|
| 15 |
|
---|
[f40a309] | 16 | .ifeq BUCHLA
|
---|
[4f508e6] | 17 | IPLEVEL = 0x0400 | NASA IPL = 4 (enable 5 and above)
|
---|
[f40a309] | 18 | .endc
|
---|
[4f508e6] | 19 |
|
---|
[f40a309] | 20 | .ifne BUCHLA
|
---|
[4f508e6] | 21 | IPLEVEL = 0x0200 | Buchla IPL = 2 (enable 3 and above)
|
---|
[f40a309] | 22 | .endc
|
---|
[4f508e6] | 23 |
|
---|
| 24 | IPL7 = 0x0700 | IPL 7
|
---|
| 25 |
|
---|
| 26 | | _trap15 -- ROMP debug trap (used to implement breakpoints)
|
---|
| 27 | | ------- ------------------------------------------------
|
---|
| 28 | _trap15: ori.w #IPL7,sr | Disable interrupts
|
---|
| 29 | move.w #0,-(a7) | Keep stack long aligned
|
---|
| 30 | movem.l d0-d7/a0-a7,-(a7) | Save regs on stack
|
---|
| 31 | move.l tr1sav,tr1rmp | Save trap save areas
|
---|
| 32 | move.l tr13sav,tr13rmp | ...
|
---|
| 33 | move.l tr14sav,tr14rmp | ...
|
---|
| 34 | move.w sr,d0 | Get status register
|
---|
| 35 | andi.w #0xF8FF,d0 | Enable serial I/O interrupts
|
---|
| 36 | ori.w #IPLEVEL,d0 | ...
|
---|
| 37 | move.w d0,sr | ...
|
---|
| 38 | jsr _rompbp | Pass control to ROMP
|
---|
| 39 |
|
---|
| 40 | ori.w #IPL7,sr | Disable interrupts
|
---|
| 41 | move.l tr14rmp,tr14sav | Restore trap save areas
|
---|
| 42 | move.l tr13rmp,tr13sav | ...
|
---|
| 43 | move.l tr1rmp,tr1sav | ...
|
---|
| 44 | movem.l (a7)+,d0-d7/a0-a7 | Restore regs
|
---|
| 45 | addq.l #2,a7 | Discard alignment filler word
|
---|
| 46 | rte | Back to what we interrupted
|
---|
| 47 |
|
---|
[f40a309] | 48 | .end
|
---|