ntr_bootrom/trunk/IrisSubp/include/IrisSubpMacroArm.s

43 lines
996 B
ArmAsm
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

;=======================================================================
; IrisSubpMacroArm.s
; IRISサブプロセッサ 標準マクロ関数ARMASM用
;
; Copyright (C) 2002-2003 NINTENDO Co.,Ltd.
;=======================================================================
IF :DEF: _IRIS_SUBP_MACRO_H
ELSE
_IRIS_SUBP_MACRO_H * 1
INCLUDE IrisSubpTargetArm.s
;-----------------------------------------------------------------------
; システムコール
;-----------------------------------------------------------------------
MACRO
SystemCall16 $No
swi $No
MEND
MACRO
SystemCall32 $No
swi $No << 16
MEND
MACRO
Halt $Bits ;
SystemCall$Bits 2
MEND
MACRO
Stop $Bits ;
SystemCall$Bits 3
MEND
ENDIF ; _IRIS_SUBP_MACRO_H
END