mirror of
https://github.com/uffejakobsen/acme.git
synced 2024-11-29 04:49:20 +00:00
10af90860d
git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@333 4df02467-bbd4-4a76-a152-e7ce94205b78
21 lines
436 B
C
21 lines
436 B
C
// ACME - a crossassembler for producing 6502/65c02/65816/65ce02 code.
|
|
// Copyright (C) 1998-2024 Marco Baye
|
|
// Have a look at "acme.c" for further info
|
|
//
|
|
// Type system stuff
|
|
#ifndef typesystem_H
|
|
#define typesystem_H
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
// warn if result is not integer
|
|
extern void typesystem_want_nonaddr(struct number *result);
|
|
|
|
// warn if result is not address
|
|
extern void typesystem_want_addr(struct number *result);
|
|
|
|
|
|
#endif
|