mirror of
https://github.com/vivier/EMILE.git
synced 2025-04-06 21:37:06 +00:00
Add 68000 support
This commit is contained in:
parent
f6bbf7d936
commit
6cebabe53b
@ -4,6 +4,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
.chip 68000
|
||||
|
||||
.macro SysError
|
||||
.short 0xA9C9
|
||||
.endm
|
||||
|
@ -219,8 +219,17 @@ ksprintn(u_long ul, int base, int *lenp, int prec)
|
||||
for(i=0;i<sizeof(buf);i++)
|
||||
buf[i] = 0;
|
||||
do {
|
||||
#if defined(68000_SUPPORT)
|
||||
unsigned long result;
|
||||
|
||||
result = ul;
|
||||
asm("divu %0, %1" : : "g" (base) , "d" (result));
|
||||
ul = (result & 0xFFFF);
|
||||
*++p = "0123456789abcdef"[result >> 16];
|
||||
#else
|
||||
*++p = "0123456789abcdef"[ul % base];
|
||||
ul /= base;
|
||||
#endif
|
||||
} while ((--prec > 0 || ul != 0) && p < buf + sizeof(buf) - 1);
|
||||
if (lenp)
|
||||
*lenp = p - buf;
|
||||
|
Loading…
x
Reference in New Issue
Block a user