Also allocate space for the PIL counters. Given that no machine actually
uses IV_MAX interrupt vectors this wasn't a problem in practice though.
This commit is contained in:
parent
33f3f40866
commit
1ef3f048e0
@ -373,15 +373,15 @@ END(rsf_fatal)
|
||||
_ALIGN_DATA
|
||||
.globl intrnames, sintrnames
|
||||
intrnames:
|
||||
.space IV_MAX * (MAXCOMLEN + 1)
|
||||
.space (IV_MAX + PIL_MAX) * (MAXCOMLEN + 1)
|
||||
sintrnames:
|
||||
.quad IV_MAX * (MAXCOMLEN + 1)
|
||||
.quad (IV_MAX + PIL_MAX) * (MAXCOMLEN + 1)
|
||||
|
||||
.globl intrcnt, sintrcnt
|
||||
intrcnt:
|
||||
.space IV_MAX * 8
|
||||
.space (IV_MAX + PIL_MAX) * 8
|
||||
sintrcnt:
|
||||
.quad IV_MAX * 8
|
||||
.quad (IV_MAX + PIL_MAX) * 8
|
||||
|
||||
.text
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user