1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-14 07:30:21 +00:00

Replace Addr68k related macros with NativeAligned inline functions

This commit is contained in:
Nick Briggs 2022-09-01 14:15:37 -07:00
parent 8b746780cd
commit 83cd45d8dc

View File

@ -87,8 +87,8 @@ LispPTR rpc(LispPTR *args)
N_GETNUMBER(args[1], port, handle_error);
/* Translate the buffer pointer into C pointers */
outbuf = (char *)(Addr68k_from_LADDR(args[2]));
inbuf = (char *)(Addr68k_from_LADDR(args[3]));
outbuf = (char *)(NativeAligned2FromLAddr(args[2]));
inbuf = (char *)(NativeAligned2FromLAddr(args[3]));
N_GETNUMBER(args[4], msec_until_timeout, handle_error);