From c9c4555f8d38053ed2da4b0f81fd86301a14d8cb Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Fri, 12 Nov 2010 13:11:18 +0100 Subject: Implement more instructions --- niosii.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'niosii.h') diff --git a/niosii.h b/niosii.h index cd4ba80..9cbef49 100644 --- a/niosii.h +++ b/niosii.h @@ -75,12 +75,12 @@ struct i_type_code{ uint32_t imm16:16; uint32_t b:5; uint32_t a:5; -}__attribute__ ((__packed__)); +} __attribute__ ((__packed__)); struct j_type_code{ uint32_t op:6; uint32_t imm26:26; -}__attribute__ ((__packed__)); +} __attribute__ ((__packed__)); struct r_type_code{ uint32_t op:6; @@ -89,7 +89,7 @@ struct r_type_code{ uint32_t c:5; uint32_t b:5; uint32_t a:5; -}__attribute__ ((__packed__)); +} __attribute__ ((__packed__)); #define handler_item(func) {.handler = func} -- cgit v1.2.3-54-g00ecf