From: Shamus Hammons Date: Thu, 20 Apr 2017 20:41:10 +0000 (-0500) Subject: Add missing files. I hate when that happens! >:-U X-Git-Tag: v2.1.0~137 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=commitdiff_plain;h=feabdce307d2077374739a7f596846382784b35e;hp=ff2052bcaa1428a33a202822a81a6f9b8e567ef4 Add missing files. I hate when that happens! >:-U --- diff --git a/6502.h b/6502.h new file mode 100644 index 0000000..acf9ded --- /dev/null +++ b/6502.h @@ -0,0 +1,23 @@ +// +// RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System +// 6502.H - 6502 assembler +// Copyright (C) 199x Landon Dyer, 2017 Reboot and Friends +// RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 +// Source utilised with the kind permission of Landon Dyer +// + +#ifndef __6502_H__ +#define __6502_H__ + +// Exported variables +extern const char in_6502mode[]; +extern uint16_t * currentorg; // Current org range + +// Exported functions +extern void Init6502(); +extern int d_6502(); +extern void m6502cg(int op); +extern void m6502obj(int ofd); + +#endif // __6502_H__ + diff --git a/eagen.h b/eagen.h new file mode 100644 index 0000000..563e2e1 --- /dev/null +++ b/eagen.h @@ -0,0 +1,18 @@ +// +// RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System +// EAGEN.H - Effective address generation for 68K +// Copyright (C) 199x Landon Dyer, 2017 Reboot and Friends +// RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986 +// Source utilised with the kind permission of Landon Dyer +// + +#ifndef __EAGEN_H__ +#define __EAGEN_H__ + +#include "rmac.h" + +int ea0gen(WORD); +int ea1gen(WORD); + +#endif // __EAGEN_H__ +