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:
Marius Strobl 2011-10-01 13:11:29 +00:00
parent 33f3f40866
commit 1ef3f048e0

View File

@ -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