/**
*
* This structure is used by setjmp/longjmp to save the
* current enviroment on the 68000.
*
**/
struct JMP_BUF
        {
        int jmp_ret;          /* return address */
        int jmp_a6;           /* A6 register - frame pointer */
        int jmp_sp;           /* stack pointer */
        };

typedef struct JMP_BUF jmp_buf;
