|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T m ┃
Length: 544 (0x220) Types: TextFile Names: »mem.h«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─ ⟦this⟧ »EUUGD11/euug-87hel/sec8/mcp/src/mem.h«
#define SHORT_BUF 16 #define MEDIUM_BUF 48 #define LONG_BUF 256 #define NIL ((addr)0) #define NOMORE -1 #define UNDEFINED -1 #define bcopy(dest, source, n) \ { \ register char *from = (char *)source; \ register char *to = (char *) dest; \ register int ii; \ int nn = n; \ for (ii=0; ii<nn; ii++) \ *to++ = *from++; \ } typedef int addr_t; typedef addr_t * addr; /* general purpose pointer type */ typedef union { addr p_ap; char *p_cp; } flexaddr; /* to make lint shut UP! */ addr MEM(), DELTAMEM();