1
0
mirror of https://github.com/deadw00d/AROS.git synced 2026-03-16 22:08:37 +00:00

ABI_V0 compatibility: use alternative interrupt macro

This commit is contained in:
Neil Cafferkey
2025-07-18 18:33:55 +01:00
parent 267949159d
commit 567d585e00

View File

@ -1094,7 +1094,8 @@ void CmdNSDQuery(struct UnitData *ud, struct IOStdReq *req)
/// IntCode()
#ifdef __AROS__
AROS_INTH1(IntCode, struct UnitData *, ud)
/* ABI_V0 compatibility */
AROS_SOFTINTH1(IntCode, struct UnitData *, ud)
#else
LONG IntCode(REG(a1, struct UnitData *ud))
#endif