X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=macro.c;h=af105d91890e0372315e5f94ed1537491f1fda44;hp=b8097f3570fe38e3c0030ad320507c46b41adb16;hb=75cce0d9eb190f6094f66ae283b5981af25e5a57;hpb=d28f432296e812643e236d1bfc9b556a7b11c461 diff --git a/macro.c b/macro.c index b8097f3..af105d9 100644 --- a/macro.c +++ b/macro.c @@ -1,9 +1,10 @@ -//////////////////////////////////////////////////////////////////////////////////////////////////// +// // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System // MACRO.C - Macro Definition and Invocation // Copyright (C) 199x Landon Dyer, 2011 Reboot and Friends // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 // Source Utilised with the Kind Permission of Landon Dyer +// #include "macro.h" #include "token.h" @@ -449,8 +450,9 @@ int invokemac(SYM *mac, WORD siz) { // ------------------------------------------------------------------------------------------------- // -void ib_macro(void) { - SYM *mac; +void ib_macro(void) +{ + SYM * mac; curmac = mac = newsym("mjump", MACRO, 0); mac->svalue = 0; @@ -486,4 +488,4 @@ void ib_macro(void) { defmac1(" .rept (\\size/2)", -1); defmac1(" nop", -1); defmac1(" .endr", -1); -} \ No newline at end of file +}