2012-02-27 21:14:46 +00:00
|
|
|
// ACME - a crossassembler for producing 6502/65c02/65816 code.
|
2014-12-04 23:58:00 +00:00
|
|
|
// Copyright (C) 1998-2014 Marco Baye
|
2012-02-27 21:14:46 +00:00
|
|
|
// Have a look at "acme.c" for further info
|
|
|
|
//
|
|
|
|
// Character encoding stuff
|
|
|
|
#ifndef encoding_H
|
|
|
|
#define encoding_H
|
|
|
|
|
|
|
|
|
2014-12-04 23:58:00 +00:00
|
|
|
// prototypes
|
2012-02-27 21:14:46 +00:00
|
|
|
|
2014-12-04 23:58:00 +00:00
|
|
|
// register pseudo opcodes (FIXME - remove!)
|
2012-02-27 21:14:46 +00:00
|
|
|
extern void Encoding_init(void);
|
|
|
|
// convert character using current encoding
|
2014-12-04 23:58:00 +00:00
|
|
|
extern char encoding_encode_char(char);
|
|
|
|
// set "raw" as default encoding
|
|
|
|
extern void encoding_passinit(void);
|
2012-02-27 21:14:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|