X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=direct.c;fp=direct.c;h=4e9cffd350cb1603bb01a34b58e2bf18cb55c676;hp=b3f51f3c3b73356c638a0dc9b087cc20f67ab58d;hb=8f287ee72236774216a11a3062f9a26dc8dc66b6;hpb=e1087cbdea2503c3462546d52919f4012d1ab115 diff --git a/direct.c b/direct.c index b3f51f3..4e9cffd 100644 --- a/direct.c +++ b/direct.c @@ -154,7 +154,7 @@ int (*dirtab[])() = { d_nofpu, // 65 nofpu d_opt, // 66 .opt d_objproc, // 67 .objproc - d_dsm, // 68 .dsm + (void *)d_dsm, // 68 .dsm }; @@ -221,8 +221,8 @@ int d_org(void) { uint64_t address; - if (!rgpu && !rdsp && !robjproc && !m6502 && !dsp56001) - return error(".org permitted only in GPU/DSP/OP, 56001 and 6502 sections"); + if (!rgpu && !rdsp && !robjproc && !m6502 && !dsp56001 && !(obj_format == RAW)) + return error(".org permitted only in GPU/DSP/OP, 56001, 6502 and 68k (with -fr switch) sections"); // M56K can leave the expression off the org for some reason :-/ // (It's because the expression is non-standard, and so we have to look at @@ -346,6 +346,17 @@ int d_org(void) // N.B.: It seems that by enabling this, even though it works elsewhere, will cause symbols to royally fuck up. Will have to do some digging to figure out why. // orgactive = 1; } + else + { + // If we get here we assume it's 68k with RAW output, so this is allowed + if (orgactive) + { + return error("In 68k mode only one .org statement is allowed"); + } + + org68k_address = address; + org68k_active = 1; + } ErrorIfNotAtEOL(); return 0;