2aa4c3bc29
lots of cleanup
28 lines
710 B
Perl
Executable file
28 lines
710 B
Perl
Executable file
#!/usr/bin/perl -w
|
|
|
|
# Generate vectors.S, the trap/interrupt entry points.
|
|
# There has to be one entry point per interrupt number
|
|
# since otherwise there's no way for trap() to discover
|
|
# the interrupt number.
|
|
|
|
print "/* generated by vectors.pl */\n";
|
|
print "/* handlers */\n";
|
|
print ".text\n";
|
|
print ".globl alltraps\n";
|
|
for(my $i = 0; $i < 256; $i++){
|
|
print ".globl vector$i\n";
|
|
print "vector$i:\n";
|
|
if(($i < 8 || $i > 14) && $i != 17){
|
|
print "\tpushl \$0\n";
|
|
}
|
|
print "\tpushl \$$i\n";
|
|
print "\tjmp alltraps\n";
|
|
}
|
|
|
|
print "\n/* vector table */\n";
|
|
print ".data\n";
|
|
print ".globl vectors\n";
|
|
print "vectors:\n";
|
|
for(my $i = 0; $i < 256; $i++){
|
|
print "\t.long vector$i\n";
|
|
}
|