Add function prototypes.
This commit is contained in:
parent
dac3d0b10c
commit
143da61d13
|
@ -7,3 +7,6 @@
|
||||||
/*
|
/*
|
||||||
* Motorola 6800 C declarations
|
* Motorola 6800 C declarations
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
void branch(register int opc, expr_t exp);
|
||||||
|
|
||||||
|
|
|
@ -8,8 +8,9 @@
|
||||||
* Motorola 6800 special routines
|
* Motorola 6800 special routines
|
||||||
*/
|
*/
|
||||||
|
|
||||||
branch(opc,exp) register opc; expr_t exp; {
|
void branch(register int opc,expr_t exp)
|
||||||
register sm, dist;
|
{
|
||||||
|
register int sm, dist;
|
||||||
int saving;
|
int saving;
|
||||||
|
|
||||||
dist = exp.val - (DOTVAL + 2);
|
dist = exp.val - (DOTVAL + 2);
|
||||||
|
|
Loading…
Reference in a new issue