Skip to content
Snippets Groups Projects
Commit 0159c8bb authored by kolya's avatar kolya
Browse files

trap 9 does not push ec: fix from Greg Price <price@mit.edu>

parent c7317d4d
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ 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){
if(!($i == 8 || ($i >= 10 && $i <= 14) || $i == 17)){
print " pushl \$0\n";
}
print " pushl \$$i\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment