Changeset 7ecfb7b in buchla-68k for rom


Ignore:
Timestamp:
07/14/2017 09:11:47 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
aa021e2
Parents:
4810254
Message:

Unused variables and parameters.

Location:
rom
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • rom/romp.c

    r4810254 r7ecfb7b  
    32673267*/
    32683268
    3269 void rompbp(int32_t d0, int32_t d1, int32_t d2, int32_t d3, int32_t d4, int32_t d5, int32_t d6, int32_t d7, int8_t *a0, int8_t *a1, int8_t *a2, int8_t *a3, int8_t *a4, int8_t *a5, int8_t *a6, int8_t *a7, uint16_t sr0, uint16_t sr, int8_t *pc)
     3269void rompbp(uint32_t d0, ...)
    32703270{
    32713271        register int16_t i;
    32723272
    32733273        regptr = (struct regs *)&d0;    /* make registers accessable */
    3274         pc -= 2L;                       /* adjust pc */
     3274        regptr->reg_pc -= 2L;           /* adjust pc */
    32753275
    32763276        if (-1 EQ setipl(iplev))                /* enable interrupts */
     
    32873287                regptr->a_reg[7] = ISTACK;      /* setup initial stack */
    32883288
    3289                 sr = INITSR;            /* setup sr */
    3290                 pc += 2L;               /* adjust pc past TRAP 15 */
     3289                regptr->reg_sr = INITSR;        /* setup sr */
     3290                regptr->reg_pc += 2L;           /* adjust pc past TRAP 15 */
    32913291
    32923292        } else {                        /* breakpoint */
     
    32963296                showrs(regptr);         /* show registers */
    32973297
    3298                 if (bphit() EQ FALSE)   /* fixup breakpoints */
    3299                         pc += 2L;       /* and maybe the pc */
     3298                if (bphit() EQ FALSE)           /* fixup breakpoints */
     3299                        regptr->reg_pc += 2L;   /* and maybe the pc */
    33003300
    33013301        }
     
    35693569        GLCcrc(0, 0);
    35703570
    3571         (int8_t *)BIOS(B_SETV, 47, trap15);     /* set ROMP trap vec */
     3571        BIOS(B_SETV, 47, trap15);       /* set ROMP trap vec */
    35723572
    35733573        for (i = 0; i < 128; i++) {
     
    35923592        progid();       /* identify the program */
    35933593
    3594         (int8_t *)BIOS(B_SETV, 47, trap15);     /* set ROMP trap vec */
     3594        BIOS(B_SETV, 47, trap15);       /* set ROMP trap vec */
    35953595        writeln(cmdunit, "\r\n\n");
    35963596
  • rom/romp.x

    r4810254 r7ecfb7b  
    164164extern  void            puthn(uint32_t num, int16_t cw, int16_t unit);
    165165extern  void            putn(uint32_t num, int16_t cw, int16_t unit);
    166 extern  void            rompbp(int32_t d0, int32_t d1, int32_t d2, int32_t d3, int32_t d4, int32_t d5, int32_t d6, int32_t d7, int8_t *a0, int8_t *a1, int8_t *a2, int8_t *a3, int8_t *a4, int8_t *a5, int8_t *a6, int8_t *a7, uint16_t sr0, uint16_t sr, int8_t *pc);
     166extern  void            rompbp(uint32_t d0, ...);
    167167extern  int16_t         setp(void *var, void *deflt);
    168168extern  int16_t         setvar(int32_t *var, int32_t deflt);
Note: See TracChangeset for help on using the changeset viewer.