Added some conversions
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user