rolled back changes of parameter handling to original EmuTOS "stack trick" (which doesn't work here as well for yet unknown reasons)

This commit is contained in:
Markus Fröschle
2013-05-06 05:58:49 +00:00
parent 9c3c58d641
commit dc40bf93a0

View File

@@ -27,9 +27,9 @@
#include "bas_printf.h" #include "bas_printf.h"
uint32_t xhdi_call(struct XHDICALL_args *stack) uint32_t xhdi_call(uint16_t *stack)
{ {
uint16_t opcode = stack->opcode; uint16_t opcode = *stack;
xprintf("xhdi_call(): opcode %d\r\n", opcode); xprintf("xhdi_call(): opcode %d\r\n", opcode);