]> Shamusworld >> Repos - rmac/blob - eagen.h
Introducing new switch -fr which outputs binaries assembled at a given address.
[rmac] / eagen.h
1 //
2 // RMAC - Reboot's Macro Assembler for all Atari computers
3 // EAGEN.H - Effective address generation for 68K
4 // Copyright (C) 199x Landon Dyer, 2011-2020 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 __EAGEN_H__
10 #define __EAGEN_H__
11
12 #include "rmac.h"
13
14 int ea0gen(WORD);
15 int ea1gen(WORD);
16
17 #endif // __EAGEN_H__
18