2016-12-28 20:32:00 +00:00
|
|
|
// ACME - a crossassembler for producing 6502/65c02/65816/65ce02 code.
|
|
|
|
// Copyright (C) 1998-2016 Marco Baye
|
2014-06-02 00:47:46 +00:00
|
|
|
// Have a look at "acme.c" for further info
|
|
|
|
//
|
|
|
|
// Type system stuff
|
|
|
|
#ifndef typesystem_H
|
|
|
|
#define typesystem_H
|
|
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
2014-06-07 00:12:10 +00:00
|
|
|
// return whether explicit symbol definitions should force "address" mode
|
2014-06-02 00:47:46 +00:00
|
|
|
extern int typesystem_says_address(void);
|
|
|
|
// parse a block while forcing address mode
|
|
|
|
extern void typesystem_force_address_block(void);
|
|
|
|
// force address mode on or off for the next statement
|
|
|
|
extern void typesystem_force_address_statement(int value);
|
2014-06-07 00:12:10 +00:00
|
|
|
// warn if result is not integer
|
|
|
|
extern void typesystem_want_imm(struct result *result);
|
|
|
|
// warn if result is not address
|
|
|
|
extern void typesystem_want_addr(struct result *result);
|
2014-06-02 00:47:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|