From df739919435155cf76c6b158904d0086414011fd Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 30 Dec 2002 10:50:32 +0000 Subject: [PATCH] Added some more pseudo opcodes for system call processing. --- include/opcode/ChangeLog | 5 +++++ include/opcode/h8300.h | 10 ++++++++++ 2 files changed, 15 insertions(+) diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index c153ff9ec..a0d7b5ba2 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,8 @@ +2002-12-30 D.Venkatasubramanian + + * h8300.h: Added some more pseudo opcodes for system call + processing. + 2002-12-19 Chris Demetriou * mips.h (OP_OP_COP0, OP_OP_COP1, OP_OP_COP2, OP_OP_COP3) diff --git a/include/opcode/h8300.h b/include/opcode/h8300.h index d5404c2c2..4141c575e 100644 --- a/include/opcode/h8300.h +++ b/include/opcode/h8300.h @@ -301,6 +301,16 @@ struct h8_opcode #define O_STM 86 #define O_STMAC 87 #define O_LAST 88 +/* Change made for System Call processing. */ +#define O_SYS_CREAT 100 +#define O_SYS_OPEN 101 +#define O_SYS_READ 102 +#define O_SYS_WRITE 103 +#define O_SYS_LSEEK 104 +#define O_SYS_CLOSE 105 +#define O_SYS_STAT 106 +#define O_SYS_FSTAT 107 +/* End of System Call specific Changes. */ #define SB 0 #define SW 1 #define SL 2