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

    r84c0125 r8325447  
    2828                .text
    2929
    30                 .xdef   _objclr,_objoff,_objon
     30                .xdef   objclr,_objoff,objon
    3131
    32                 .xref   _v_actab
     32                .xref   v_actab
    3333
    3434SCSIZE          =       350             | Screen height
     
    4747|               its bit in all words of the access table.
    4848| ------------------------------------------------------------------------------
    49 _objclr:        link    a6,#0           | Link stack frames
     49objclr:         link    a6,#0           | Link stack frames
    5050                move.w  OBJ(a6),d1      | Get object bit number in d1
    51                 lea     _v_actab,a0     | Get base of object table in a0
     51                lea     v_actab,a0      | Get base of object table in a0
    5252                move.w  #SCSIZE-1,d2    | Put line count in d2
    5353
     
    7373                move.w  LINE(a6),d2     | Get top line number
    7474                add.w   d2,d2           | Convert to word offset
    75                 lea     _v_actab,a0     | Get base address of access table
     75                lea     v_actab,a0      | Get base address of access table
    7676                move.w  0(a0,d2),d0     | Get top line access word
    7777                bset.l  d1,d0           | Set object bit
     
    101101|               at 'line' thru 'line'+'num'.  Enables the object.
    102102| ------------------------------------------------------------------------------
    103 _objon:         link    a6,#0           | Link stack frames
     103objon:          link    a6,#0           | Link stack frames
    104104                move.w  OBJ(a6),d1      | Get object bit number into d1
    105105                move.w  LINE(a6),d2     | Get top line number
    106106                add.w   d2,d2           | Convert to word offset
    107                 lea     _v_actab,a0     | Get base address of access table
     107                lea     v_actab,a0      | Get base address of access table
    108108                move.w  0(a0,d2),d0     | Get top line access word
    109109                bclr.l  d1,d0           | Clear object bit
Note: See TracChangeset for help on using the changeset viewer.