diff options
Diffstat (limited to 'arch/mips/lib/pmaxio.S')
-rw-r--r-- | arch/mips/lib/pmaxio.S | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/arch/mips/lib/pmaxio.S b/arch/mips/lib/pmaxio.S index 66e216a55..e69de29bb 100644 --- a/arch/mips/lib/pmaxio.S +++ b/arch/mips/lib/pmaxio.S @@ -1,40 +0,0 @@ -#include <asm/regdef.h> -#include <asm/decstation.h> - - .text - .set reorder -/* - * pmax_printf - call the PROM printf() function - */ - .globl pmax_printf -pmax_printf: - lw v0,pmax_rex_base - lw v0,REX_PRINTF(v0) - j v0 - -/* - * pmax_getchar - call the PROM getchar() function - */ - .globl pmax_getch -pmax_getch: - lw v0,pmax_rex_base - lw v0,REX_GETCHAR(v0) - j v0 - -/* - * pmax_putchar - call the PROM putchar() function - */ - .globl pmax_putch -pmax_putch: - lw v0,pmax_rex_base - lw v0,REX_PUTCHAR(v0) - j v0 - -/* - * pmax_halt - call the PROM halt() function - */ - .globl pmax_halt -pmax_halt: - lw v0,pmax_rex_base - lw v0,REX_HALT(v0) - j v0 |