Changeset 7848656 in buchla-68k
- Timestamp:
- 07/09/2017 05:04:43 PM (7 years ago)
- Branches:
- master
- Children:
- 9519422
- Parents:
- bc11fc1
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
iolib/mdump.c
rbc11fc1 r7848656 85 85 pipc(chars, PERLINE); 86 86 } 87 87 88 88 printf("\n%08lX:", ii); 89 89 } -
libsm/strcat.c
rbc11fc1 r7848656 11 11 int8_t *strcat(int8_t *s1, int8_t *s2) 12 12 { 13 13 register int8_t *os1; 14 14 15 15 os1 = s1; 16 16 17 18 17 while(*s1++) 18 ; 19 19 20 20 --s1; 21 21 22 23 22 while(*s1++ = *s2++) 23 ; 24 24 25 25 return(os1); 26 26 } -
libsm/strccpy.c
rbc11fc1 r7848656 18 18 int8_t *strccpy(int8_t *s1, int8_t *s2, int8_t c) 19 19 { 20 20 register int8_t *os1; 21 21 register int8_t x; 22 22 23 23 os1 = s1; 24 24 25 25 while(c != (x = *s1++)) 26 26 *s2++ = x; 27 27 28 28 return(os1); 29 29 } -
libsm/strcspn.c
rbc11fc1 r7848656 11 11 int16_t strcspn(int8_t *string, int8_t *charset) 12 12 { 13 13 register int8_t *p, *q; 14 14 register int16_t n = 0; 15 15 16 16 for(q = string; *q != '\0'; ++q , ++n) { 17 17 18 19 18 for(p = charset; *p != '\0' && *p != *q; ++p) 19 ; 20 20 21 22 23 21 if(*p != '\0') 22 break; 23 } 24 24 25 25 return(n); 26 26 } -
libsm/strlen.c
rbc11fc1 r7848656 11 11 int16_t strlen(int8_t *s) 12 12 { 13 13 register int16_t n = 0; 14 14 15 16 15 while (*s++ != '\0') 16 ++n; 17 17 18 18 return (n); 19 19 } -
libsm/strtok.c
rbc11fc1 r7848656 23 23 /* first or subsequent call ? */ 24 24 25 25 p = (string == NULL) ? savept : string; 26 26 27 27 if (p == 0) /* return if no tokens remain */ -
misc/proto.c
rbc11fc1 r7848656 250 250 251 251 void vsplot4(uint16_t *obase, uint16_t nw, uint16_t fg, uint16_t row, uint16_t col, int8_t *str, 252 252 uint16_t pitch, uint16_t ht, int16_t cgtab[][256]) 253 253 { 254 254 } 255 255 256 256 void vvputsv(uint16_t *obase, uint16_t nw, uint16_t fg, uint16_t bg, uint16_t row, uint16_t col, 257 257 int8_t *str, uint16_t pitch, uint16_t ht, int16_t cgtab[][256]) 258 258 { 259 259 } -
ram/asgvce.c
rbc11fc1 r7848656 447 447 lastvce[grp] = vp; 448 448 execkey(trg, tuntab[key], vp, 0); 449 449 DB_EXIT("asgvce - stolen voice"); 450 450 return; 451 451 } … … 455 455 } 456 456 457 457 DB_EXIT("asgvce - no voice"); 458 458 } -
ram/dopatch.c
rbc11fc1 r7848656 178 178 179 179 *(fpu + (int32_t)FPU_TMNT) = (((int32_t)dat2 & 0x0000FFF0L) 180 180 * ((int32_t)timemlt & 0x0000FFFFL)) >> 15; 181 181 182 182 ++delay; -
ram/sedisp.s
rbc11fc1 r7848656 827 827 bset #0,_vrcw+1 | set video reset type bit 828 828 tst.w _ctrsw | update center for scupd ? 829 829 beq dsexit | done if not 830 830 831 831 dsasgn0: move.l _gdfsep,d0 | quit if no elements left -
ram/sedump.c
rbc11fc1 r7848656 248 248 249 249 if (sep->e_size EQ E_SIZE1) 250 250 printf(" $%04.4X $%04.4X", 251 251 ((struct n_entry *)sep)->e_vel, 252 252 ((struct n_entry *)sep)->e_data4); -
ram/sendval.c
rbc11fc1 r7848656 218 218 memsetw(lstends, 0, (NLSTENTS << 1)); /* clear end table */ 219 219 220 220 /* re-establish dynamics and locations */ 221 221 222 222 for (i = 0; i < 12; i++) { -
rom/romp.c
rbc11fc1 r7848656 778 778 printf(" x0 x1 x2 x3 x4 x5 x6 x7 x8 x9\r\n"); 779 779 printf(" ----- ----- ----- ----- ----- ----- ----- ----- ----- -----\r\n"); 780 780 781 781 for (i = 0; i < 9; i++ ) { 782 782
Note:
See TracChangeset
for help on using the changeset viewer.