claymation / osxp

EFI boot loader for running Windows XP on Intel Macs, from the 2006 Windows On Mac hacker challenge

This URL has Read+Write access

osxp / mkstubs.pl
100644 10 lines (7 sloc) 0.153 kb
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl
 
for ($i = 0; $i < 256; $i++) {
    print "int${i}_stub:\n";
    print "\tpushw\t\$$i\n";
    print "\tjmp\tRMISR\n";
    print "\n";
}