mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-21 01:57:49 +00:00
Replace Addr68k related macros with NativeAligned inline functions
This commit is contained in:
parent
f543d56260
commit
a38ae21908
@ -50,8 +50,8 @@ LispPTR N_OP_blt(LispPTR destptr, LispPTR sourceptr, LispPTR wordcount) {
|
||||
if ((wordcount & SEGMASK) != S_POSITIVE) ERROR_EXIT(wordcount);
|
||||
nw = wordcount & 0xffff;
|
||||
|
||||
source68k = Addr68k_from_LADDR(sourceptr) + nw;
|
||||
dest68k = Addr68k_from_LADDR(destptr) + nw;
|
||||
source68k = NativeAligned2FromLAddr(sourceptr) + nw;
|
||||
dest68k = NativeAligned2FromLAddr(destptr) + nw;
|
||||
|
||||
while (nw) {
|
||||
(GETWORD(--dest68k)) = GETWORD(--source68k);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user