updated toacme: v0.15 new removes leading '+' signs when converting

sources from "Professional Assembler".


git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@113 4df02467-bbd4-4a76-a152-e7ce94205b78
This commit is contained in:
marcobaye 2019-04-25 20:26:10 +00:00
parent e1744c0008
commit 8fc1d4c738
2 changed files with 37 additions and 8 deletions

View File

@ -1,5 +1,5 @@
// ToACME - converts other source codes to ACME format.
// Copyright (C) 1999-2016 Marco Baye
// Copyright (C) 1999-2019 Marco Baye
// Have a look at "main.c" for further info
//
// "Professional Ass by Oliver Stiller" stuff (NOT "Profi-Ass" by Data Becker!)
@ -40,6 +40,12 @@
#define REV_START ";-=#"
#define REV_END "#=-"
enum linestate {
LINESTATE_REMOVEPLUS, // before label def
LINESTATE_DOUBLENEXTSPACE, // entered when removing '+'
LINESTATE_NOTHINGSPECIAL // afterward
};
// main
void prof_main(void)
{
@ -49,6 +55,7 @@ void prof_main(void)
byte,
hibit,
length2;
enum linestate linestate;
IO_set_input_padding(0);
IO_process_load_address();
@ -57,7 +64,8 @@ void prof_main(void)
if (length1 == EOF)
break;
if (length1 < 3) {
fprintf(stderr, "Error: Short line (%d bytes)\n", length1);
fprintf(stderr, "Error: Short line (%d bytes), stopping.\n", length1);
return;
}
// read amount of indentation and output tabs/spaces
indent = IO_get_byte();
@ -71,13 +79,34 @@ void prof_main(void)
}
// now convert line
hibit = 0;
linestate = LINESTATE_REMOVEPLUS;
for (ii = 0; ii < length1 - 3; ii++) {
byte = IO_get_byte();
if ((byte & 128) != hibit) {
hibit = byte & 128;
IO_put_string(hibit ? REV_START : REV_END);
}
IO_put_byte(SCR2ISO(byte & 127));
byte = SCR2ISO(byte & 127);
// outside of comments, remove leading '+'
if (hibit == 0) {
if (byte == '+') {
if (linestate == LINESTATE_REMOVEPLUS) {
linestate = LINESTATE_DOUBLENEXTSPACE;
continue; // eat '+'
}
} else if (byte == ' ') {
if (linestate == LINESTATE_DOUBLENEXTSPACE) {
linestate = LINESTATE_NOTHINGSPECIAL;
IO_put_byte(' '); // add space to compensate for eaten '+'
}
} else {
// any other char -> do not remove any '+'
if (linestate == LINESTATE_REMOVEPLUS) {
linestate = LINESTATE_NOTHINGSPECIAL;
}
}
}
IO_put_byte(byte);
}
if (hibit)
IO_put_string(REV_END);

View File

@ -1,15 +1,15 @@
// ToACME - converts other source codes to ACME format.
// Copyright (C) 1999-2015 Marco Baye
// Copyright (C) 1999-2019 Marco Baye
// Have a look at "main.c" for further info
//
// Version
#define RELEASE_NUMBER "0.14" // change before release (FIXME)
#define CHANGE_DATE "19 Feb" // change before release
#define CHANGE_YEAR "2017" // change before release
#define RELEASE_NUMBER "0.15" // change before release (FIXME)
#define CHANGE_DATE "25 Apr" // change before release
#define CHANGE_YEAR "2019" // change before release
#define HOME_PAGE "http://sourceforge.net/projects/acme-crossass/"
// "http://home.pages.de/~mac_bacon/smorbrod/acme/"
#define FILE_TAG ";ACME 0.96.1" // check before release
#define FILE_TAG ";ACME 0.96.4" // check before release
#include <stdio.h>
#include <string.h>