Added some conversions

This commit is contained in:
ceriel
1989-01-20 14:54:55 +00:00
parent 21dfb2ee1b
commit acfefb688c
6 changed files with 6 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ arith w;
break;
case SEGROM : fprint( codefile, BYTE_FMT, (arith) w);
break;
case SEGBSS : bss( 1);
case SEGBSS : bss( (arith) 1);
break;
default : fprint( STDERR, "gen1 unkown seg %d\n", cur_seg);
}

View File

@@ -10,7 +10,7 @@ arith w;
break;
case SEGROM : fprint( codefile, WORD_FMT, (arith) w);
break;
case SEGBSS : bss( 2);
case SEGBSS : bss( (arith) 2);
break;
default : fprint( STDERR, "gen2 unkown seg %d\n", cur_seg);
}

View File

@@ -10,7 +10,7 @@ arith w;
break;
case SEGROM : fprint( codefile, LONG_FMT, (arith) w);
break;
case SEGBSS : bss( 4);
case SEGBSS : bss( (arith) 4);
break;
default : fprint( STDERR, "gen4 unkown seg %d\n", cur_seg);
}