X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=direct.c;h=5628ef90f8226d59d064e0e9757634c3ac3d6852;hb=2037569179a89c7ea99abf7c3e75f23448ff54ff;hp=b17f9dde6393fc515f74df779a52b469d5a60464;hpb=7d364a21bf389d947bb61cc235d00b3892aca89a;p=rmac diff --git a/direct.c b/direct.c index b17f9dd..5628ef9 100644 --- a/direct.c +++ b/direct.c @@ -51,6 +51,7 @@ int d_abs(void); int d_comm(void); int d_dc(WORD); int d_ds(WORD); +int d_dsm(WORD); int d_dcb(WORD); int d_globl(void); int d_gpu(void); @@ -153,6 +154,7 @@ int (*dirtab[])() = { d_nofpu, // 65 nofpu d_opt, // 66 .opt d_objproc, // 67 .objproc + d_dsm, // 68 .dsm }; @@ -1074,11 +1076,11 @@ int d_ds(WORD siz) return 0; // Check to see if the value being passed in is negative (who the hell does - // that?--nobody does; it's the code gremlins, or rum, that does it) - // N.B.: Since 'eval' is of type uint32_t, if it goes negative, it will have - // its high bit set. + // that?--nobody does; it's the code gremlins, or rum, what does it) + // N.B.: Since 'eval' is of type uint32_t, if it goes negative, it will + // have its high bit set. if (eval & 0x80000000) - return error("negative sizes not allowed"); + return error("negative sizes not allowed in DS"); // In non-TDB section (BSS, ABS and M6502) just advance the location // counter appropriately. In TDB sections, deposit (possibly large) chunks @@ -1128,7 +1130,52 @@ int d_ds(WORD siz) // -// dc.b, dc.w / dc, dc.l, dc.i, dc.q, dc.d +// dsm[.siz] expression +// Define modulo storage +// Quoting the Motorola assembler manual: +// "The DSM directive reserves a block of memory the length of which in words is equal to +// the value of .If the runtime location counter is not zero, this directive first +// advances the runtime location counter to a base address that is a multiple of 2k, where +// 2k >= ." +// The kicker of course is written a few sentences after: +// "