ack/mach/i80/ncg/mach.c

100 lines
1.7 KiB
C
Raw Normal View History

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
*
*/
1985-03-18 12:55:07 +00:00
#ifndef NORCSID
static char rcsid[] = "$Id$";
1985-03-18 12:55:07 +00:00
#endif
1985-01-17 14:31:34 +00:00
/*
* machine dependent back end routines for the Intel 8080.
*/
#include <stdlib.h> /* atol */
void con_part(sz, w) register sz;
word w;
{
1985-01-17 14:31:34 +00:00
while (part_size % sz)
part_size++;
if (part_size == 2)
part_flush();
if (sz == 1)
{
1985-01-17 14:31:34 +00:00
w &= 0xFF;
if (part_size)
w <<= 8;
part_word |= w;
}
else
{
1985-01-17 14:31:34 +00:00
assert(sz == 2);
part_word = w;
}
part_size += sz;
}
void con_mult(sz) word sz;
{
1985-01-17 14:31:34 +00:00
if (argval != 4)
fatal("bad icon/ucon size");
fprintf(codefile, ".data4\t%ld\n", atol(str));
1985-01-17 14:31:34 +00:00
}
#define CODE_GENERATOR
#define IEEEFLOAT
#define FL_MSL_AT_LOW_ADDRESS 0
#define FL_MSW_AT_LOW_ADDRESS 0
#define FL_MSB_AT_LOW_ADDRESS 0
#include <con_float>
1985-01-17 14:31:34 +00:00
void prolog(nlocals) full nlocals;
{
1985-01-17 14:31:34 +00:00
fprintf(codefile, "\tpush\tb\n\tlxi\th,0\n\tdad\tsp\n\tmov\tb,h\n\tmov\tc,l\n");
switch (nlocals)
{
case 4:
fprintf(codefile, "\tpush\th\n");
case 2:
fprintf(codefile, "\tpush\th\n");
case 0:
break;
default:
fprintf(codefile, "\tlxi\th,%d\n\tdad\tsp\n\tsphl\n", -nlocals);
break;
1985-01-17 14:31:34 +00:00
}
}
void mes(type) word type;
{
int argt;
1985-01-17 14:31:34 +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
}
default:
while (getarg(any_ptyp) != sp_cend)
;
break;
1985-01-17 14:31:34 +00:00
}
}
char* segname[] = { ".sect .text", ".sect .data", ".sect .rom", ".sect .bss" };