Install the DSI and ISI trap handlers and their appropriate locations.

This commit is contained in:
benno 2002-03-07 12:22:44 +00:00
parent 5784524774
commit 65393002bd
2 changed files with 4 additions and 0 deletions

View File

@ -363,6 +363,8 @@ powerpc_init(u_int startkernel, u_int endkernel, u_int basekernel, char *args)
* XXX: Initialize the interrupt tables.
*/
bcopy(&decrint, (void *)EXC_DECR, (size_t)&decrsize);
bcopy(&dsitrap, (void *)EXC_DSI, (size_t)&dsisize);
bcopy(&isitrap, (void *)EXC_ISI, (size_t)&isisize);
/*
* Start initializing proc0 and thread0.

View File

@ -363,6 +363,8 @@ powerpc_init(u_int startkernel, u_int endkernel, u_int basekernel, char *args)
* XXX: Initialize the interrupt tables.
*/
bcopy(&decrint, (void *)EXC_DECR, (size_t)&decrsize);
bcopy(&dsitrap, (void *)EXC_DSI, (size_t)&dsisize);
bcopy(&isitrap, (void *)EXC_ISI, (size_t)&isisize);
/*
* Start initializing proc0 and thread0.