- Timestamp:
- 07/10/2017 12:02:05 PM (7 years ago)
- Branches:
- master
- Children:
- 39a696b
- Parents:
- 5fa506d
- Location:
- vlib
- Files:
-
- 16 added
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
vlib/cg2.c
r5fa506d r6262b5c 1 #include "all.h" 1 2 2 3 /* Character generator table -- 12V by 8H */ -
vlib/cg3.c
r5fa506d r6262b5c 2 2 /* 14V by 8H */ 3 3 /* Generated: 1989-11-16 15:40:14 */ 4 5 #include "all.h" 4 6 5 7 /* int16_t cg_rows = 14; */ -
vlib/glcinit.c
r5fa506d r6262b5c 59 59 */ 60 60 61 #include "stddefs.h" 62 #include "hwdefs.h" 63 #include "glcdefs.h" 61 #include "all.h" 64 62 65 63 uint16_t lcdbase; /* LCD graphics base address */ … … 328 326 } 329 327 328 -
vlib/lseg.c
r5fa506d r6262b5c 7 7 */ 8 8 9 void (*point)(int16_t x, int16_t y, int16_t pen); 9 #include "all.h" 10 11 void (*point)(int16_t x, int16_t y, int16_t pen); 10 12 11 13 #define ABS(x) ((x) < 0 ? (-(x)) : (x)) -
vlib/vbfill4.c
r5fa506d r6262b5c 8 8 */ 9 9 10 #include "all.h" 11 10 12 static int16_t fm[] = { /* fill masks */ 11 13 -
vlib/vclrs.c
r5fa506d r6262b5c 16 16 */ 17 17 18 extern void vputc(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t c, uint16_t attrib); 18 #include "all.h" 19 19 20 20 /* -
vlib/vhinit.c
r5fa506d r6262b5c 16 16 #define FASTCHIP 1 /* non-zero if it's the fast VSDD chip */ 17 17 18 #include "hwdefs.h" 19 #include "vsdd.h" 20 #include "memory.h" 21 22 #include "vsddsw.h" 18 #include "all.h" 23 19 24 20 #define VREG(h,v) ((h<<10)|v) … … 100 96 memcpyw(v_cgtab, cgtable, 256 * cg_rows); 101 97 } 98 -
vlib/vmput.c
r5fa506d r6262b5c 19 19 */ 20 20 21 extern void vputc(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t c, uint16_t attrib); 21 #include "all.h" 22 22 23 23 /* -
vlib/vobjfns.c
r5fa506d r6262b5c 53 53 */ 54 54 55 #include "biosdefs.h" 56 #include "graphdef.h" 57 #include "hwdefs.h" 58 #include "stddefs.h" 59 #include "vsdd.h" 60 #include "vsddvars.h" 55 #include "all.h" 61 56 62 57 extern void vbank(uint16_t b); … … 269 264 } 270 265 } 266 -
vlib/vputs.c
r5fa506d r6262b5c 12 12 */ 13 13 14 #include <stddefs.h>14 #include "all.h" 15 15 16 16 extern void vputc(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t c, uint16_t attrib); … … 72 72 } 73 73 } 74 -
vlib/vputsv.c
r5fa506d r6262b5c 12 12 */ 13 13 14 #include " stddefs.h"14 #include "all.h" 15 15 16 16 extern void vputcv(uint16_t *adr, uint16_t row, uint16_t col, uint8_t chr, uint16_t atr, uint16_t cols); … … 73 73 } 74 74 } 75 -
vlib/vsetpal.c
r5fa506d r6262b5c 5 5 ============================================================================= 6 6 */ 7 8 #include "all.h" 7 9 8 10 #define PALETTE ((uint16_t *)0x280000L) -
vlib/vsinit.c
r5fa506d r6262b5c 7 7 */ 8 8 9 #include "hwdefs.h" 10 #include "graphdef.h" 11 #include "vsdd.h" 12 #include "vsddvars.h" 13 #include "memory.h" 9 #include "all.h" 14 10 15 11 /* … … 26 22 v_curob = &v_obtab[0]; 27 23 } 24 -
vlib/vspray4.c
r5fa506d r6262b5c 6 6 */ 7 7 8 #include "stddefs.h" 9 #include "vsddsw.h" 8 #include "all.h" 10 9 11 10 static int8_t cl[81]; … … 62 61 } 63 62 } 63 -
vlib/vtext.c
r5fa506d r6262b5c 7 7 ============================================================================= 8 8 */ 9 10 #include "all.h" 9 11 10 12 static int16_t msk[] = { 0xFF00, 0x00FF }; -
vlib/vwputm.c
r5fa506d r6262b5c 16 16 */ 17 17 18 #include <vsdd.h>18 #include "all.h" 19 19 20 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); … … 34 34 } 35 35 36
Note:
See TracChangeset
for help on using the changeset viewer.