]> Shamusworld >> Repos - rmac/blob - dsp56k_mach.h
Fix a few minor problems with 030 mode PC relative fixups.
[rmac] / dsp56k_mach.h
1 //
2 // RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
3 // DSP56L_MACH.C - Code Generation for Motorola DSP56001
4 // Copyright (C) 199x Landon Dyer, 2011-2019 Reboot and Friends
5 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
6 // Source utilised with the kind permission of Landon Dyer
7 //
8
9 #ifndef __DSP56KMACH_H__
10 #define __DSP56KMACH_H__
11
12 #include "rmac.h"
13 #include "dsp56k_amode.h"
14
15 // Exported variables
16 extern MNTABDSP dsp56k_machtab[];
17 extern unsigned int dsp_orgaddr;
18 extern unsigned int dsp_orgseg;
19
20 // Exported functions
21 extern int dsp_mult(LONG inst);
22
23 #endif // __DSP56KMACH_H__
24