X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=direct.c;fp=direct.c;h=b3a835821ea1af580232bc9b13f6cf0b93495c3b;hp=684607f522ad6456f004032e9fe0c936c4826e33;hb=41a8ca9921f49fc9f238e3c1aaf0ce44a9fc1043;hpb=31894aa869ad24fac76a1d045d22c9179ea533d1 diff --git a/direct.c b/direct.c index 684607f..b3a8358 100644 --- a/direct.c +++ b/direct.c @@ -2027,6 +2027,7 @@ int d_56001(void) regtab = reg56tab; regcheck = reg56check; regaccept = reg56accept; + used_architectures |= M56001P | M56001X | M56001Y | M56001L; return 0; } @@ -2058,6 +2059,7 @@ int d_gpu(void) regtab = regrisctab; regcheck = regrisccheck; regaccept = regriscaccept; + //used_architectures |= MGPU; // TODO: Should GPU/DSP have their own dedicated sections in the long run? return 0; } @@ -2089,6 +2091,7 @@ int d_dsp(void) regtab = regrisctab; regcheck = regrisccheck; regaccept = regriscaccept; + //used_architectures |= MDSP; // TODO: Should GPU/DSP have their own dedicated sections in the long run? return 0; } @@ -2361,6 +2364,7 @@ int d_objproc(void) rgpu = 0; // Unset GPU assembly rdsp = 0; // Unset DSP assembly dsp56001 = 0; // Unset 56001 assembly + //used_architectures |= MOP; // TODO: Should OP have its own dedicated section in the long run? return OK; }