Changeset 4422c8e in buchla-68k
- Timestamp:
- 07/14/2017 02:46:19 PM (7 years ago)
- Branches:
- master
- Children:
- d21fc6f
- Parents:
- add86dd
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libcio/filesys.c
radd86dd r4422c8e 684 684 _dirin = FALSE; 685 685 686 if ( (struct bpb *)0L EQ (_thebpb =BIOS(B_GBPB, 0))) {686 if (NULL EQ (_thebpb = (struct bpb *)BIOS(B_GBPB, 0))) { 687 687 688 688 errno = EIO; /* couldn't read the BPB */ -
libcio/open.c
radd86dd r4422c8e 19 19 static struct devtabl devtabl[] = { 20 20 21 { "con:", &condev, 2 }, /* console device */22 { "CON:", &condev, 2 },23 24 { 0, &filedev, 0} /* this MUST be the last entry */21 { "con:", &condev, (io_arg)2 }, /* console device */ 22 { "CON:", &condev, (io_arg)2 }, 23 24 { 0, &filedev, NULL } /* this MUST be the last entry */ 25 25 }; 26 26 -
ram/dcopy.c
radd86dd r4422c8e 40 40 mphead.F_Symtab = 0L; /* symbol table length */ 41 41 mphead.F_Res1 = 0L; /* reserved area #1 */ 42 mphead.F_Res2 = &Lo_RAM;/* text base */42 mphead.F_Res2 = (int32_t)&Lo_RAM; /* text base */ 43 43 mphead.F_Res3 = 0xFFFF; /* flag word */ 44 44 -
ram/sedump.c
radd86dd r4422c8e 10 10 int8_t *A6PTR = 0L; /* traceback a6 starting address */ 11 11 int8_t *A7PTR = 0L; /* traceback a7 starting address */ 12 int8_t *A7TOP = 0x000FFFFFL; /* traceback stack top */ 12 int8_t *A7TOP = (int8_t *)0x000FFFFFL; 13 /* traceback stack top */ 13 14 14 15 int16_t SCnumv = 0; /* voice for SCvoice() to dump (0..11) */ … … 406 407 407 408 printf("Stack dump: $%08lX to $%08lX\n\n", A7PTR, A7TOP); 408 mdump(A7PTR, A7TOP, A7PTR);409 mdump(A7PTR, A7TOP, (int32_t)A7PTR); 409 410 printf("\n\n"); 410 411 printf("Stack traceback: from A6 = $%08lX\n\n", A6PTR); … … 423 424 while (cura6) { 424 425 425 olda6 = *cura6;426 olda6 = (int32_t *)*cura6; 426 427 427 428 printf("$%08lX: $%08lX $%08lX\n",
Note:
See TracChangeset
for help on using the changeset viewer.