Changeset 8325447 in buchla-68k for lib700/jumpto.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
  • lib700/jumpto.s

    r84c0125 r8325447  
    4040                .text
    4141
    42                 .xdef   _halt,_jumpto,_rjumpto,_sjumpto,_xreset
     42                .xdef   halt,jumpto,rjumpto,sjumpto,xreset
    4343
    4444                .page
    4545
    46 _halt:          stop    #0x2700                 | stop dead, interrupts disabled
    47                 jmp     _halt                   | stay stopped if stepped thru
     46halt:           stop    #0x2700                 | stop dead, interrupts disabled
     47                jmp     halt                    | stay stopped if stepped thru
    4848
    49 _jumpto:        movea.l 4(a7),a0                | get jump address
     49jumpto:         movea.l 4(a7),a0                | get jump address
    5050                jmp     (a0)                    | go to the jump address
    5151
    52 _rjumpto:       reset                           | reset external devices
     52rjumpto:        reset                           | reset external devices
    5353                movea.l 4(a7),a0                | get jump address
    5454                jmp     (a0)                    | go to the jump address
    5555
    56 _sjumpto:       movea.l 4(a7),a0                | get jump address
     56sjumpto:        movea.l 4(a7),a0                | get jump address
    5757                movea.l 8(a7),a7                | set stack pointer
    5858                jmp     (a0)                    | go to the jump address
    5959
    60 _xreset:        reset                           | reset external devices
     60xreset:         reset                           | reset external devices
    6161                rts                             | return to caller
    6262
Note: See TracChangeset for help on using the changeset viewer.