]> Devi Nivas Git - cs3210-lab0.git/commitdiff
add minimal comments to generator vector table
authorrsc <rsc>
Sun, 16 Jul 2006 15:38:56 +0000 (15:38 +0000)
committerrsc <rsc>
Sun, 16 Jul 2006 15:38:56 +0000 (15:38 +0000)
vectors.pl

index 9438b2dfa3dc11238ff82989566e7b83c22ee1af..368aad71f1b64cacff257aa731ee68db962179d4 100755 (executable)
@@ -1,11 +1,12 @@
 #!/usr/bin/perl -w
 
-# generate vectors.S, the trap/interrupt entry points.
-# there has to be one entry point per interrupt number
+# Generate vectors.S, the trap/interrupt entry points.
+# There has to be one entry point per interrupt number
 # since otherwise there's no way to tell 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++){
@@ -17,9 +18,11 @@ for(my $i = 0; $i < 256; $i++){
     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 ".long vector$i\n";
+    print "\t.long vector$i\n";
 }