Changeset 6a37d5b in buchla-68k
- Timestamp:
- 07/15/2017 05:04:43 AM (7 years ago)
- Branches:
- master
- Children:
- 09d1345
- Parents:
- 7bb1284
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
include/vsdd.h
r7bb1284 r6a37d5b 55 55 struct octent { /* Object control table entry */ 56 56 57 uint16_tysize, /* Height of object in pixels */57 int16_t ysize, /* Height of object in pixels */ 58 58 xsize; /* Width of object in pixels */ 59 59 -
misc/proto.c
r7bb1284 r6a37d5b 120 120 } 121 121 122 void GLCplot( uint16_t x, uint16_t y, uint16_t val)122 void GLCplot(int16_t x, int16_t y, int16_t val) 123 123 { 124 124 } … … 140 140 } 141 141 142 void objclr( uint16_t obj)143 { 144 } 145 146 void objoff( uint16_t obj, uint16_t line, uint16_t num)147 { 148 } 149 150 void objon( uint16_t obj, uint16_t line, uint16_t num)142 void objclr(int16_t obj) 143 { 144 } 145 146 void objoff(int16_t obj, int16_t line, int16_t num) 147 { 148 } 149 150 void objon(int16_t obj, int16_t line, int16_t num) 151 151 { 152 152 } … … 156 156 } 157 157 158 void procpfl( uint16_t trig)158 void procpfl(int16_t trig) 159 159 { 160 160 } … … 182 182 } 183 183 184 uint16_t setipl(uint16_t arg)184 int16_t setipl(int16_t arg) 185 185 { 186 186 return 0; … … 241 241 } 242 242 243 void vbank( uint16_t b)244 { 245 } 246 247 void vclrav(uint16_t * adr, uint16_t row, uint16_t col, uint16_t atr, uint16_t len)243 void vbank(int16_t b) 244 { 245 } 246 247 void vclrav(uint16_t *obase, int16_t row, int16_t col, uint16_t attr, int16_t len) 248 248 { 249 249 } … … 265 265 } 266 266 267 void vputa(uint16_t * sbase, uint16_t row, uint16_t col, uint16_t attrib)268 { 269 } 270 271 void vputc(uint16_t * sbase, uint16_t row, uint16_t col, uint16_t c, uint16_t attrib)272 { 273 } 274 275 void vputcv(uint16_t * adr, uint16_t row, uint16_t col, uint8_t chr, uint16_t atr, uint16_t cols)267 void vputa(uint16_t *obase, int16_t row, int16_t col, uint16_t attr) 268 { 269 } 270 271 void vputc(uint16_t *obase, int16_t row, int16_t col, int16_t c, uint16_t attr) 272 { 273 } 274 275 void vputcv(uint16_t *obase, int16_t row, int16_t col, int16_t c, uint16_t attr, int16_t cols) 276 276 { 277 277 } … … 281 281 } 282 282 283 void vsetav(uint16_t * adr, uint16_t row, uint16_t col, uint16_t atr, uint16_t len)284 { 285 } 286 287 void vsetcv(uint16_t * adr, uint16_t row, uint16_t col, uint16_t cfb, uint16_t len)288 { 289 } 290 291 void vsplot4(uint16_t *obase, uint16_t nw, uint16_t fg, uint16_t row, uint16_t col, int8_t *str,292 uint16_t pitch, uint16_t ht, int16_t cgtab[][256])293 { 294 } 295 296 void vvputsv(uint16_t *obase, uint16_t nw, uint16_t fg, uint16_t bg, uint16_t row, uint16_t col,297 int8_t *str, uint16_t pitch, uint16_t ht, int16_t cgtab[][256])283 void vsetav(uint16_t *obase, int16_t row, int16_t col, uint16_t attr, int16_t len) 284 { 285 } 286 287 void vsetcv(uint16_t *obase, int16_t row, int16_t col, uint16_t fgbg, int16_t len) 288 { 289 } 290 291 void vsplot4(uint16_t *obase, int16_t nw, int16_t fg, int16_t row, int16_t col, int8_t *str, 292 int16_t pitch, int16_t ht, int16_t cgtab[][256]) 293 { 294 } 295 296 void vvputsv(uint16_t *obase, int16_t nw, int16_t fg, int16_t bg, int16_t row, int16_t col, 297 int8_t *str, int16_t pitch, int16_t ht, int16_t cgtab[][256]) 298 298 { 299 299 } -
misc/proto.x
r7bb1284 r6a37d5b 55 55 */ 56 56 57 extern void GLCplot( uint16_t x, uint16_t y, uint16_t val);57 extern void GLCplot(int16_t x, int16_t y, int16_t val); 58 58 extern void Lo_RAM(void); 59 59 extern void VIint(void); … … 69 69 extern void jumpto(void *addr); 70 70 extern void longjmp(struct JMP_BUF *env, int16_t val); 71 extern void objclr( uint16_t obj);72 extern void objoff( uint16_t obj, uint16_t line, uint16_t num);73 extern void objon( uint16_t obj, uint16_t line, uint16_t num);71 extern void objclr(int16_t obj); 72 extern void objoff(int16_t obj, int16_t line, int16_t num); 73 extern void objon(int16_t obj, int16_t line, int16_t num); 74 74 extern void panic(void); 75 extern void procpfl( uint16_t trig);75 extern void procpfl(int16_t trig); 76 76 extern int32_t rand24(void); 77 77 extern void rjumpto(void *addr); 78 78 extern void se_disp(struct s_entry *ep, int16_t sd, struct gdsel *gdstb[], int16_t cf); 79 79 extern struct s_entry *se_exec(struct s_entry *ep, int16_t sd); 80 extern uint16_t setipl(uint16_t arg);80 extern int16_t setipl(int16_t arg); 81 81 extern int16_t setjmp(struct JMP_BUF *env); 82 82 extern void setsio(void); … … 91 91 extern void tsplot4(uint16_t *obase, int16_t nw, int16_t fg, int16_t row, int16_t col, int8_t *str, int16_t pitch); 92 92 extern int32_t uldiv(int32_t divid, int32_t divis); 93 extern void vbank( uint16_t b);94 extern void vclrav(uint16_t * adr, uint16_t row, uint16_t col, uint16_t atr, uint16_t len);93 extern void vbank(int16_t b); 94 extern void vclrav(uint16_t *obase, int16_t row, int16_t col, uint16_t attr, int16_t len); 95 95 extern void vcputs(uint16_t *obase, int16_t nw, int16_t fg, int16_t bg, int16_t row, int16_t col, int8_t *str); 96 96 extern void vcputsv(uint16_t *obase, int16_t nw, int16_t fg, int16_t bg, int16_t row, int16_t col, int8_t *str, int16_t pitch); 97 97 extern void vfwait(void); 98 extern void vputa(uint16_t * sbase, uint16_t row, uint16_t col, uint16_t attrib);99 extern void vputc(uint16_t * sbase, uint16_t row, uint16_t col, uint16_t c, uint16_t attrib);100 extern void vputcv(uint16_t * adr, uint16_t row, uint16_t col, uint8_t chr, uint16_t atr, uint16_t cols);98 extern void vputa(uint16_t *obase, int16_t row, int16_t col, uint16_t attr); 99 extern void vputc(uint16_t *obase, int16_t row, int16_t col, int16_t c, uint16_t attr); 100 extern void vputcv(uint16_t *obase, int16_t row, int16_t col, int16_t c, uint16_t attr, int16_t cols); 101 101 extern void vputp(struct octent *octad, int16_t xloc, int16_t yloc, int16_t val); 102 extern void vsetav(uint16_t * adr, uint16_t row, uint16_t col, uint16_t atr, uint16_t len);103 extern void vsetcv(uint16_t * adr, uint16_t row, uint16_t col, uint16_t cfb, uint16_t len);104 extern void vsplot4(uint16_t *obase, uint16_t nw, uint16_t fg, uint16_t row, uint16_t col, int8_t *str, uint16_t pitch, uint16_t ht, int16_t cgtab[][256]);105 extern void vvputsv(uint16_t *obase, uint16_t nw, uint16_t fg, uint16_t bg, uint16_t row, uint16_t col, int8_t *str, uint16_t pitch, uint16_t ht, int16_t cgtab[][256]);102 extern void vsetav(uint16_t *obase, int16_t row, int16_t col, uint16_t attr, int16_t len); 103 extern void vsetcv(uint16_t *obase, int16_t row, int16_t col, uint16_t fgbg, int16_t len); 104 extern void vsplot4(uint16_t *obase, int16_t nw, int16_t fg, int16_t row, int16_t col, int8_t *str, int16_t pitch, int16_t ht, int16_t cgtab[][256]); 105 extern void vvputsv(uint16_t *obase, int16_t nw, int16_t fg, int16_t bg, int16_t row, int16_t col, int8_t *str, int16_t pitch, int16_t ht, int16_t cgtab[][256]); 106 106 extern void vwputp(struct octent *octad, int16_t xloc, int16_t yloc, int16_t val); 107 107 extern void vwputs(uint16_t *obase, int16_t nw, int16_t fg, int16_t bg, int16_t row, int16_t col, int8_t *str);
Note:
See TracChangeset
for help on using the changeset viewer.