This commit is contained in:
Markus Fröschle
2013-05-09 20:07:54 +00:00
parent 8121085e37
commit 80a1828eca
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ typedef void* (*xhdi_call_fun)(int xhdi_fun, ...);
struct XHDICALL_args
{
unsigned int opcode;
uint16_t opcode;
};
extern unsigned long xhdi_call(struct XHDICALL_args stack);

View File

@@ -29,7 +29,7 @@
uint32_t xhdi_call(struct XHDICALL_args stack)
{
uint32_t opcode = stack.opcode;
uint16_t opcode = stack.opcode;
switch (opcode)
{