Changeset 8325447 in buchla-68k for iolib/rtraps.s


Ignore:
Timestamp:
08/07/2017 02:04:35 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
27c8d40
Parents:
84c0125
Message:

Removed _ prefix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • iolib/rtraps.s

    r84c0125 r8325447  
    55                .text
    66
    7                 .xdef   _trap15
     7                .xdef   trap15
    88
    9                 .xref   _rompbp
     9                .xref   rompbp
    1010
    1111                .xref   tr1sav,tr13sav,tr14sav
     
    2424IPL7            =       0x0700          | IPL 7
    2525
    26 | _trap15 -- ROMP debug trap  (used to implement breakpoints)
    27 | -------    ------------------------------------------------
    28 _trap15:        ori.w   #IPL7,sr                | Disable interrupts
     26| trap15 -- ROMP debug trap  (used to implement breakpoints)
     27| ------    ------------------------------------------------
     28trap15:         ori.w   #IPL7,sr                | Disable interrupts
    2929                move.w  #0,-(a7)                | Keep stack long aligned
    3030                movem.l d0-d7/a0-a7,-(a7)       | Save regs on stack
     
    3636                ori.w   #IPLEVEL,d0             | ...
    3737                move.w  d0,sr                   | ...
    38                 jsr     _rompbp                 | Pass control to ROMP
     38                jsr     rompbp                  | Pass control to ROMP
    3939
    4040                ori.w   #IPL7,sr                | Disable interrupts
Note: See TracChangeset for help on using the changeset viewer.