Move target handling routines into the common directory.

git-svn-id: svn://svn.cc65.org/cc65/trunk@299 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2000-08-23 07:01:18 +00:00
parent 7691c3cdcc
commit f871ab4ba6
5 changed files with 11 additions and 16 deletions

View File

@@ -42,6 +42,7 @@
/* common */
#include "bitops.h"
#include "check.h"
#include "tgttrans.h"
/* ca65 */
#include "condasm.h"
@@ -58,7 +59,6 @@
#include "options.h"
#include "repeat.h"
#include "symtab.h"
#include "target.h"
#include "pseudo.h"
@@ -270,7 +270,7 @@ static void DoASCIIZ (void)
return;
}
/* Translate into target charset and emit */
XlatStr (SVal);
TgtTranslateStr (SVal);
EmitData ((unsigned char*) SVal, strlen (SVal));
NextTok ();
if (Tok == TOK_COMMA) {
@@ -306,7 +306,7 @@ static void DoByte (void)
while (1) {
if (Tok == TOK_STRCON) {
/* A string, translate into target charset and emit */
XlatStr (SVal);
TgtTranslateStr (SVal);
EmitData ((unsigned char*) SVal, strlen (SVal));
NextTok ();
} else {