forked from MirrorRepos/RomWBW
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
452 B
18 lines
452 B
/* ===========================================================================
|
|
* uz80as, an assembler for the Zilog Z80 and several other microprocessors.
|
|
*
|
|
* Target list.
|
|
* ===========================================================================
|
|
*/
|
|
|
|
#ifndef TARGETS_H
|
|
#define TARGETS_H
|
|
|
|
struct target;
|
|
|
|
const struct target *find_target(const char *id);
|
|
|
|
const struct target *first_target(void);
|
|
const struct target *next_target(void);
|
|
|
|
#endif
|
|
|