mirror of
https://github.com/elliotnunn/powermac-rom.git
synced 2025-01-05 14:32:04 +00:00
7fdc813d8f
Namely queues, semaphores, critical regions, event groups and "notifications". The MP calls implementing these services have been named after their MPLibrary wrapper functions. This convention will be followed in the future (no more NKCreateEvent).
55 lines
1.0 KiB
ArmAsm
55 lines
1.0 KiB
ArmAsm
;_______________________________________________________________________
|
|
; Equates for the whole NanoKernel
|
|
;_______________________________________________________________________
|
|
|
|
|
|
kNanoKernelVersion equ $0228
|
|
|
|
|
|
; PowerPC Machine Status Register (MSR) bits
|
|
; (borrowing the _bitEqu macro from NKInfoRecordsPriv.s)
|
|
|
|
_bitEqu MSR_POW, 13
|
|
_bitEqu MSR_ILE, 15
|
|
_bitEqu MSR_EE, 16
|
|
_bitEqu MSR_PR, 17
|
|
_bitEqu MSR_FP, 18
|
|
_bitEqu MSR_ME, 19
|
|
_bitEqu MSR_FE0, 20
|
|
_bitEqu MSR_SE, 21
|
|
_bitEqu MSR_BE, 22
|
|
_bitEqu MSR_FE1, 23
|
|
_bitEqu MSR_IP, 25
|
|
_bitEqu MSR_IR, 26
|
|
_bitEqu MSR_DR, 27
|
|
_bitEqu MSR_RI, 30
|
|
_bitEqu MSR_LE, 31
|
|
|
|
|
|
; Special Purpose Registers (SPRs) not understood by MPW
|
|
|
|
l2cr equ 1017
|
|
|
|
|
|
; Alignment for NanoKernel interrupt routines (mostly Interrupts.s)
|
|
|
|
kIntAlign equ 5
|
|
|
|
|
|
|
|
; Junk
|
|
|
|
|
|
; IRP is 10 pages below KDP (measured start to start)
|
|
IRPOffset equ (-10) * 4096
|
|
kKDPfromIRP equ 10 * 4096
|
|
|
|
|
|
|
|
; Branch instruction BO fields
|
|
; (disregarding static prediction :)
|
|
BO_IF equ 12
|
|
BO_IF_NOT equ 4
|
|
|
|
Z equ 0x80000000
|