2000-10-19 Antti P Miettinen <anmietti@trshp.ntc.nokia.com>

* clock/ckinit.c: Do not just set the IMR, OR the enable bit in.
This commit is contained in:
Joel Sherrill
2000-10-19 15:43:54 +00:00
parent cab273000e
commit f52111f233
4 changed files with 10 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2000-10-19 Antti P Miettinen <anmietti@trshp.ntc.nokia.com>
* clock/ckinit.c: Do not just set the IMR, OR the enable bit in.
2000-09-29 Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
* startup/linkcmds: Added lines so DWARF debug information

View File

@@ -93,7 +93,7 @@ void Install_clock(
/*
* Enable TIMER1 interrupts only.
*/
m302.reg.imr = RBIT_IMR_TIMER1; /* set 68302 int-mask to allow ints */
m302.reg.imr |= RBIT_IMR_TIMER1; /* set 68302 int-mask to allow ints */
atexit( Clock_exit );
}

View File

@@ -1,3 +1,7 @@
2000-10-19 Antti P Miettinen <anmietti@trshp.ntc.nokia.com>
* clock/ckinit.c: Do not just set the IMR, OR the enable bit in.
2000-09-29 Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
* startup/linkcmds: Added lines so DWARF debug information

View File

@@ -94,7 +94,7 @@ void Install_clock(
/*
* Enable TIMER1 interrupts only.
*/
m302.reg.imr = RBIT_IMR_TIMER1; /* set 68302 int-mask to allow ints */
m302.reg.imr |= RBIT_IMR_TIMER1; /* set 68302 int-mask to allow ints */
atexit( Clock_exit );
}