Changeset 0580615 in buchla-68k for ram/wsdsp.c
- Timestamp:
- 07/08/2017 02:42:31 PM (7 years ago)
- Branches:
- master
- Children:
- 342a56f
- Parents:
- 46d8069
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
ram/wsdsp.c
r46d8069 r0580615 24 24 /* things defined elsewhere */ 25 25 26 extern unsigned exp_c( );26 extern unsigned exp_c(unsigned c); 27 27 28 28 extern int (*point)(); … … 78 78 /* forward references */ 79 79 80 short wdpoint();80 void wdpoint(short x, short y, short pen); 81 81 82 82 /* … … 114 114 */ 115 115 116 advwcur()116 void advwcur(void) 117 117 { 118 118 register short newcol; … … 134 134 */ 135 135 136 hdraw(hv, h) 137 register short *hv; 138 short h; 136 void hdraw(short *hv, short h) 139 137 { 140 138 register short bc, bx, by, j; … … 170 168 */ 171 169 172 dsws(how) 173 short how; 170 void dsws(short how) 174 171 { 175 172 register struct instdef *ip; … … 224 221 */ 225 222 226 wdswin(n) 227 register short n; 223 void wdswin(short n) 228 224 { 229 225 register short cx, wval; … … 375 371 */ 376 372 377 wwins()373 void wwins(void) 378 374 { 379 375 register short i; … … 389 385 */ 390 386 391 short 392 wdpoint(x, y, pen) 393 short x, y, pen; 387 void wdpoint(short x, short y, short pen) 394 388 { 395 389 if (v_regs[5] & 0x0180) … … 409 403 */ 410 404 411 wdbord()405 void wdbord(void) 412 406 { 413 407 point = wdpoint; … … 436 430 */ 437 431 438 clrws()432 void clrws(void) 439 433 { 440 434 register struct instdef *ip; … … 477 471 */ 478 472 479 iniwslb()473 void iniwslb(void) 480 474 { 481 475 register short i, j; … … 505 499 */ 506 500 507 wsdsp()501 void wsdsp(void) 508 502 { 509 503 waveob = &v_score[0]; /* setup object pointer */
Note:
See TracChangeset
for help on using the changeset viewer.