1985-01-17 14:31:34 +00:00
|
|
|
/*
|
1987-03-10 01:26:51 +00:00
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
1985-01-17 14:31:34 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* machine dependent back end routines for the Intel 8080.
|
|
|
|
*/
|
|
|
|
|
2017-11-13 19:23:44 +00:00
|
|
|
#include <stdlib.h> /* atol */
|
|
|
|
|
2019-02-07 08:09:31 +00:00
|
|
|
void con_part(int sz, word w)
|
2019-02-06 10:50:05 +00:00
|
|
|
{
|
1985-01-17 14:31:34 +00:00
|
|
|
|
|
|
|
while (part_size % sz)
|
|
|
|
part_size++;
|
|
|
|
if (part_size == 2)
|
|
|
|
part_flush();
|
2019-02-06 10:50:05 +00:00
|
|
|
if (sz == 1)
|
|
|
|
{
|
1985-01-17 14:31:34 +00:00
|
|
|
w &= 0xFF;
|
|
|
|
if (part_size)
|
|
|
|
w <<= 8;
|
|
|
|
part_word |= w;
|
2019-02-06 10:50:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1985-01-17 14:31:34 +00:00
|
|
|
assert(sz == 2);
|
|
|
|
part_word = w;
|
|
|
|
}
|
|
|
|
part_size += sz;
|
|
|
|
}
|
|
|
|
|
2019-08-13 19:37:05 +00:00
|
|
|
void
|
|
|
|
con_mult(word sz) {
|
1985-01-17 14:31:34 +00:00
|
|
|
|
2019-08-13 19:37:05 +00:00
|
|
|
if (sz != 4 && sz != 8)
|
1985-01-17 14:31:34 +00:00
|
|
|
fatal("bad icon/ucon size");
|
2019-08-13 19:37:05 +00:00
|
|
|
fprintf(codefile,".data%d\t%s\n", (int)sz, str);
|
1985-01-17 14:31:34 +00:00
|
|
|
}
|
|
|
|
|
2018-04-25 20:09:56 +00:00
|
|
|
#define CODE_GENERATOR
|
|
|
|
#define IEEEFLOAT
|
2019-02-06 10:50:05 +00:00
|
|
|
#define FL_MSL_AT_LOW_ADDRESS 0
|
|
|
|
#define FL_MSW_AT_LOW_ADDRESS 0
|
|
|
|
#define FL_MSB_AT_LOW_ADDRESS 0
|
2018-04-25 20:09:56 +00:00
|
|
|
#include <con_float>
|
1985-01-17 14:31:34 +00:00
|
|
|
|
2019-02-06 15:06:07 +00:00
|
|
|
void prolog(full nlocals)
|
2019-02-06 10:50:05 +00:00
|
|
|
{
|
2019-02-15 22:01:33 +00:00
|
|
|
int16_t adjustment = -nlocals;
|
|
|
|
|
|
|
|
if (adjustment == 0)
|
2019-02-06 15:06:07 +00:00
|
|
|
fprintf(codefile, "\tcall .pro0\n");
|
2019-02-15 22:01:33 +00:00
|
|
|
else if (adjustment == -2)
|
2019-02-06 15:06:07 +00:00
|
|
|
fprintf(codefile, "\tcall .pro2\n");
|
2019-02-15 22:01:33 +00:00
|
|
|
else if (adjustment == -4)
|
2019-02-06 15:06:07 +00:00
|
|
|
fprintf(codefile, "\tcall .pro4\n");
|
2019-02-15 22:01:33 +00:00
|
|
|
else if ((adjustment >= -128) && (adjustment <= 127))
|
|
|
|
fprintf(codefile, "\tcall .probyte\n\t.data1 %d\n", adjustment);
|
2019-02-06 15:06:07 +00:00
|
|
|
else
|
2019-02-15 22:01:33 +00:00
|
|
|
fprintf(codefile, "\tcall .proword\n\t.data2 %d\n", adjustment);
|
1985-01-17 14:31:34 +00:00
|
|
|
}
|
|
|
|
|
2019-02-06 10:50:05 +00:00
|
|
|
void mes(type) word type;
|
|
|
|
{
|
|
|
|
int argt;
|
1985-01-17 14:31:34 +00:00
|
|
|
|
2019-02-06 10:50:05 +00:00
|
|
|
switch ((int)type)
|
|
|
|
{
|
|
|
|
case ms_ext:
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
switch (argt = getarg(ptyp(sp_cend) | ptyp(sp_pnam) | sym_ptyp))
|
|
|
|
{
|
|
|
|
case sp_cend:
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
strarg(argt);
|
|
|
|
fprintf(codefile, ".define %s\n", argstr);
|
|
|
|
break;
|
|
|
|
}
|
1985-01-17 14:31:34 +00:00
|
|
|
}
|
2019-02-06 10:50:05 +00:00
|
|
|
default:
|
|
|
|
while (getarg(any_ptyp) != sp_cend)
|
|
|
|
;
|
|
|
|
break;
|
1985-01-17 14:31:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-06 10:50:05 +00:00
|
|
|
char* segname[] = { ".sect .text", ".sect .data", ".sect .rom", ".sect .bss" };
|