I accidently mixed up the parameter order of the ISA I/O calls, thanks
to Stefano for reporting this. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8980 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -101,9 +101,9 @@ static void
|
|||||||
set_leds(void)
|
set_leds(void)
|
||||||
{
|
{
|
||||||
wait_for_output();
|
wait_for_output();
|
||||||
gISA->write_io_8(0xed, 0x60);
|
gISA->write_io_8(0x60, 0xed);
|
||||||
wait_for_output();
|
wait_for_output();
|
||||||
gISA->write_io_8(leds, 0x60);
|
gISA->write_io_8(0x60, leds);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user