- Timestamp:
- 07/10/2017 02:17:49 PM (7 years ago)
- Branches:
- master
- Children:
- 06f6615
- Parents:
- 39a696b
- Location:
- vlib
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
vlib/cg2.c
r39a696b rb28a12e 1 #include " all.h"1 #include "ram.h" 2 2 3 3 /* Character generator table -- 12V by 8H */ -
vlib/cg3.c
r39a696b rb28a12e 3 3 /* Generated: 1989-11-16 15:40:14 */ 4 4 5 #include " all.h"5 #include "ram.h" 6 6 7 7 /* int16_t cg_rows = 14; */ -
vlib/glcinit.c
r39a696b rb28a12e 59 59 */ 60 60 61 #include " all.h"61 #include "ram.h" 62 62 63 63 uint16_t lcdbase; /* LCD graphics base address */ -
vlib/lseg.c
r39a696b rb28a12e 7 7 */ 8 8 9 #include " all.h"9 #include "ram.h" 10 10 11 11 void (*point)(int16_t x, int16_t y, int16_t pen); -
vlib/vbfill4.c
r39a696b rb28a12e 8 8 */ 9 9 10 #include " all.h"10 #include "ram.h" 11 11 12 12 static int16_t fm[] = { /* fill masks */ -
vlib/vclrs.c
r39a696b rb28a12e 16 16 */ 17 17 18 #include " all.h"18 #include "ram.h" 19 19 20 20 /* -
vlib/vhinit.c
r39a696b rb28a12e 16 16 #define FASTCHIP 1 /* non-zero if it's the fast VSDD chip */ 17 17 18 #include " all.h"18 #include "ram.h" 19 19 20 20 #define VREG(h,v) ((h<<10)|v) 21 22 extern int16_t cgtable[][256];23 extern int16_t cg_rows;24 21 25 22 struct octent v_obtab[16]; /* object control table */ -
vlib/vmput.c
r39a696b rb28a12e 19 19 */ 20 20 21 #include " all.h"21 #include "ram.h" 22 22 23 23 /* -
vlib/vobjfns.c
r39a696b rb28a12e 53 53 */ 54 54 55 #include "all.h" 56 57 extern void vbank(uint16_t b); 58 extern void objon(uint16_t obj, uint16_t line, uint16_t num); 59 extern void VIint(void); 60 61 extern uint16_t setipl(uint16_t arg); 55 #include "ram.h" 62 56 63 57 int16_t wsize; /* object width calculated by SetObj() */ -
vlib/vputs.c
r39a696b rb28a12e 12 12 */ 13 13 14 #include "all.h" 15 16 extern void vputc(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t c, uint16_t attrib); 14 #include "ram.h" 17 15 18 16 /* -
vlib/vputsv.c
r39a696b rb28a12e 12 12 */ 13 13 14 #include "all.h" 15 16 extern void vputcv(uint16_t *adr, uint16_t row, uint16_t col, uint8_t chr, uint16_t atr, uint16_t cols); 14 #include "ram.h" 17 15 18 16 /* -
vlib/vsetpal.c
r39a696b rb28a12e 6 6 */ 7 7 8 #include " all.h"8 #include "ram.h" 9 9 10 10 #define PALETTE ((uint16_t *)0x280000L) -
vlib/vsinit.c
r39a696b rb28a12e 7 7 */ 8 8 9 #include " all.h"9 #include "ram.h" 10 10 11 11 /* -
vlib/vspray4.c
r39a696b rb28a12e 6 6 */ 7 7 8 #include " all.h"8 #include "ram.h" 9 9 10 10 static int8_t cl[81]; -
vlib/vtext.c
r39a696b rb28a12e 8 8 */ 9 9 10 #include " all.h"10 #include "ram.h" 11 11 12 12 static int16_t msk[] = { 0xFF00, 0x00FF }; -
vlib/vwputm.c
r39a696b rb28a12e 16 16 */ 17 17 18 #include "all.h" 19 20 extern void vwputs(int16_t *obase, int16_t nw, int16_t fg, int16_t bg, int16_t row, int16_t col, int8_t *str); 18 #include "ram.h" 21 19 22 20 /*
Note:
See TracChangeset
for help on using the changeset viewer.