Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions kstuff-toggle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,24 @@ kstuff_toggle(int enable) {
sysentvec = KERNEL_ADDRESS_DATA_BASE + 0xdba6d8;
break;

case 0x11000000:
case 0x11200000:
sysentvec = KERNEL_ADDRESS_DATA_BASE + 0xdcbc78;
break;

case 0x11400000:
case 0x11600000:
sysentvec = KERNEL_ADDRESS_DATA_BASE + 0xdcbc98;
break;

case 0x12000000:
case 0x12020000:
case 0x12200000:
case 0x12400000:
case 0x12600000:
sysentvec = KERNEL_ADDRESS_DATA_BASE + 0xdcc978;
break;

default:
notify("Unsupported firmware");
return -1;
Expand Down
Loading