Changeset 8325447 in buchla-68k for vlib


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.

Location:
vlib
Files:
16 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
  • vlib/glcplot.s

    r84c0125 r8325447  
    1414                .text
    1515
    16                 .xdef   _GLCplot
    17                 .xref   _lcd_a0,_lcd_a1,_lcdbase
     16                .xdef   GLCplot
     17                .xref   lcd_a0,lcd_a1,lcdbase
    1818
    1919XLOC            =       8                       | 'x' parameter offset
     
    2727                .page
    2828
    29 _GLCplot:       link    a6,#0                   | Link stack frames
     29GLCplot:        link    a6,#0                   | Link stack frames
    3030                moveq   #63,d0                  | d0 = (63-y) * 85
    3131                sub.w   YLOC(a6),d0             | ...
     
    4141                lsr.w   #3,d1                   | d1 = (x%6) / 8
    4242                add.w   d1,d0                   | d0 = cursor address
    43                 add.w   _lcdbase,d0             | ...
     43                add.w   lcdbase,d0              | ...
    4444                move.w  d0,d1                   | d1 = cursor address, too
    45                 move.b  #G_CRSWR,_lcd_a1        | Send cursor address to GLC
    46                 move.b  d0,_lcd_a0              | ...
     45                move.b  #G_CRSWR,lcd_a1         | Send cursor address to GLC
     46                move.b  d0,lcd_a0               | ...
    4747                lsr.w   #8,d0                   | ...
    48                 move.b  d0,_lcd_a0              | ...
    49                 move.b  #G_MREAD,_lcd_a1        | Read old pixel byte
    50                 move.b  _lcd_a1,d0              | ... into d0
     48                move.b  d0,lcd_a0               | ...
     49                move.b  #G_MREAD,lcd_a1         | Read old pixel byte
     50                move.b  lcd_a1,d0               | ... into d0
    5151                tst.w   VAL(a6)                 | Check val for zero
    5252                beq     glcplt1                 | Jump if val EQ 0
     
    5757glcplt1:        bclr    d2,d0                   | Clear the pixel to 0
    5858
    59 glcplt2:        move.b  #G_CRSWR,_lcd_a1        | Send cursor address to GLC
    60                 move.b  d1,_lcd_a0              | ...
     59glcplt2:        move.b  #G_CRSWR,lcd_a1         | Send cursor address to GLC
     60                move.b  d1,lcd_a0               | ...
    6161                lsr.w   #8,d1                   | ...
    62                 move.b  d1,_lcd_a0              | ...
    63                 move.b  #G_MWRITE,_lcd_a1       | Setup GLC to write pixel
    64                 move.b  d0,_lcd_a0              | Write pixel
     62                move.b  d1,lcd_a0               | ...
     63                move.b  #G_MWRITE,lcd_a1        | Setup GLC to write pixel
     64                move.b  d0,lcd_a0               | Write pixel
    6565                unlk    a6                      | Unlink stack frames
    6666                rts                             | Return to caller
  • vlib/tsplot4.s

    r84c0125 r8325447  
    2222                .text
    2323
    24                 .xdef   _tsplot4
     24                .xdef   tsplot4
    2525
    26                 .xref   _cgtable
     26                .xref   cgtable
    2727
    2828| Argument offsets from a6:
     
    6868                .page
    6969
    70 _tsplot4:       link    a6,#0           | Link stack frames
     70tsplot4:        link    a6,#0           | Link stack frames
    7171                movem.l d3-d6/a3,-(a7)  | Save registers we use
    7272                move.w  #PSHIFT,d1      | Set shift constant
     
    9494                movea.l a3,a1           | Establish output pointer in a1
    9595                adda.l  #HCW,a3         | Update output pointer for next char.
    96                 lea     _cgtable,a0     | Establish CG pointer in a0
     96                lea     cgtable,a0      | Establish CG pointer in a0
    9797                lsl.w   #1,d0           | ... 2 * character
    98                 adda.w  d0,a0           | ... + _cgtable address
     98                adda.w  d0,a0           | ... + cgtable address
    9999                move.w  #VPIX-1,d6      | Set scan line counter in d6
    100100
  • vlib/vbank.s

    r84c0125 r8325447  
    1515|               Wait for a FRAMESTOP update to transpire.
    1616| ------------------------------------------------------------------------------
    17                 .xdef   _vbank
    18                 .xdef   _vfwait
     17                .xdef   vbank
     18                .xdef   vfwait
    1919
    20                 .xref   _v_regs
     20                .xref   v_regs
    2121
    2222                .text
     
    4242
    4343
    44 _vbank:         link    a6,#0                   | link stack frames
     44vbank:          link    a6,#0                   | link stack frames
    4545                movem.l d5-d7,-(sp)             | preserve registers
    46                 move.w  _v_regs+VSDD_R5,OLDB    | get v_regs[5]
     46                move.w  v_regs+VSDD_R5,OLDB     | get v_regs[5]
    4747                lsr.w   #6,OLDB                 | extract BS bits
    4848                move.w  OLDB,d0                 | ...
     
    6666                andi.w  #256,NEWB               | ...
    6767                or.w    NEWB,d0                 | ...
    68                 move.w  d0,_v_regs+VSDD_R5      | set v_regs[5] with new BS bits
     68                move.w  d0,v_regs+VSDD_R5       | set v_regs[5] with new BS bits
    6969
    70 vw1b:           cmp.w   #VT_1,_v_regs+VSDD_R11  | wait for FRAMESTOP
     70vw1b:           cmp.w   #VT_1,v_regs+VSDD_R11   | wait for FRAMESTOP
    7171                bcc     vw1b                    | ...
    7272
    73 vw2b:           cmp.w   #VT_1,_v_regs+VSDD_R11  | ...
     73vw2b:           cmp.w   #VT_1,v_regs+VSDD_R11   | ...
    7474                bcs     vw2b                    | ...
    7575
    76 vw3b:           cmp.w   #VT_1,_v_regs+VSDD_R11  | ...
     76vw3b:           cmp.w   #VT_1,v_regs+VSDD_R11   | ...
    7777                bcc     vw3b                    | ...
    7878
    79 vw4b:           cmp.w   #VT_2,_v_regs+VSDD_R11  | ...
     79vw4b:           cmp.w   #VT_2,v_regs+VSDD_R11   | ...
    8080                bcs     vw4b                    | ...
    8181
     
    9393| ------------------------------------------------------------------------------
    9494
    95 _vfwait:        link    a6,#0                   | link stack frames
     95vfwait:         link    a6,#0                   | link stack frames
    9696
    97 vw1a:           cmp.w   #VT_1,_v_regs+VSDD_R11  | wait for FRAMESTOP
     97vw1a:           cmp.w   #VT_1,v_regs+VSDD_R11   | wait for FRAMESTOP
    9898                bcc     vw1a                    | ...
    9999
    100 vw2a:           cmp.w   #VT_1,_v_regs+VSDD_R11  | ...
     100vw2a:           cmp.w   #VT_1,v_regs+VSDD_R11   | ...
    101101                bcs     vw2a                    | ...
    102102
    103 vw3a:           cmp.w   #VT_1,_v_regs+VSDD_R11  | ...
     103vw3a:           cmp.w   #VT_1,v_regs+VSDD_R11   | ...
    104104                bcc     vw3a                    | ...
    105105
    106 vw4a:           cmp.w   #VT_2,_v_regs+VSDD_R11  | ...
     106vw4a:           cmp.w   #VT_2,v_regs+VSDD_R11   | ...
    107107                bcs     vw4a                    | ...
    108108
  • vlib/vclrav.s

    r84c0125 r8325447  
    1414                .text
    1515
    16                 .xdef   _vclrav
     16                .xdef   vclrav
    1717
    1818P_ADR           =       8
     
    2222P_LEN           =       18
    2323
    24 _vclrav:        link    a6,#0           | Link stack frame pointer
     24vclrav:         link    a6,#0           | Link stack frame pointer
    2525                move.w  P_ROW(a6),d0    | Get row
    2626                mulu    P_LEN(a6),d0    | Multiply by len
  • vlib/vcputsv.s

    r84c0125 r8325447  
    2222                .text
    2323
    24                 .xdef   _vcputsv
     24                .xdef   vcputsv
    2525
    26                 .xref   _cgtable
     26                .xref   cgtable
    2727
    2828| Argument offsets from a6:
     
    6969                .page
    7070
    71 _vcputsv:       link    a6,#0           | Link stack frames
     71vcputsv:        link    a6,#0           | Link stack frames
    7272                movem.l d3-d6/a3,-(a7)  | Save registers we use
    7373                move.w  #PSHIFT,d1      | Set shift constant
     
    9797                movea.l a3,a1           | Establish output pointer in a1
    9898                adda.l  #HCW,a3         | Update output pointer for next char.
    99                 lea     _cgtable,a0     | Establish CG pointer in a0
     99                lea     cgtable,a0      | Establish CG pointer in a0
    100100                lsl.w   #1,d0           | ... 2 * character
    101                 adda.w  d0,a0           | ... + _cgtable address
     101                adda.w  d0,a0           | ... + cgtable address
    102102                move.w  #VPIX-1,d6      | Set scan line counter in d6
    103103
  • vlib/viint.s

    r84c0125 r8325447  
    1919                .text
    2020
    21                 .xdef   _VIint                  | Vertical Interval int. handler
    22 
    23                 .xdef   _vi_sadr                | score object base address
    24                 .xdef   _vi_scrl                | score object scroll offset
     21                .xdef   VIint                   | Vertical Interval int. handler
     22
     23                .xdef   vi_sadr                 | score object base address
     24                .xdef   vi_scrl                 | score object scroll offset
    2525                .xdef   lclsadr                 | local scroll address
    2626                .xdef   lclscrl                 | local scroll offset
     
    3232                .xdef   VIct4                   | VSDD interrupt R11
    3333
    34                 .xref   _v_regs                 | VSDD registers
    35                 .xref   _v_odtab                | VSDD object descriptor table
    36 
    37                 .xref   _vi_clk                 | scroll delay timer
    38                 .xref   _vi_ctl                 | unblank control word
    39                 .xref   _vi_tag                 | VSDD 'needs service' tag
     34                .xref   v_regs                  | VSDD registers
     35                .xref   v_odtab                 | VSDD object descriptor table
     36
     37                .xref   vi_clk                  | scroll delay timer
     38                .xref   vi_ctl                  | unblank control word
     39                .xref   vi_tag                  | VSDD 'needs service' tag
    4040
    4141                .page
     
    4747STACKSR         =       32                      | offset to sr on stack
    4848V_BLA           =       4                       | V_BLA (blank) bit number
    49 VSDD_R5         =       10                      | VSDD R5 byte offset in _v_regs
    50 VSDD_R11        =       22                      | VSDD R11 byte offset in _v_regs
     49VSDD_R5         =       10                      | VSDD R5 byte offset in v_regs
     50VSDD_R11        =       22                      | VSDD R11 byte offset in v_regs
    5151
    5252VT_BASE         =       128                     | word offset of VSDD Access Table
     
    7474                .page
    7575
    76 | _VIint -- Vertical interval interrupt handler
    77 | ------    -----------------------------------
    78 _VIint:         movem.l d0-d3/a0-a2/a6,-(a7)    | save registers
     76| VIint -- Vertical interval interrupt handler
     77| -----    -----------------------------------
     78VIint:          movem.l d0-d3/a0-a2/a6,-(a7)    | save registers
    7979                addi.w  #0x0100,STACKSR(a7)     | raise IPL in sr on the stack
    8080
    81                 move.w  _v_regs+VSDD_R11,VIct1  | save the VSDD R11 value
    82 
    83                 tst.w   _vi_sadr                | see if we should scroll
     81                move.w  v_regs+VSDD_R11,VIct1   | save the VSDD R11 value
     82
     83                tst.w   vi_sadr                 | see if we should scroll
    8484                beq     viunbl                  | jump if not
    8585
     
    8787| setup delayed scroll parameters
    8888| ------------------------------------------------------------------------------
    89                 move.w  _v_regs+VSDD_R5,d0      | get VSDD R5
     89                move.w  v_regs+VSDD_R5,d0       | get VSDD R5
    9090                move.w  d0,d1                   | save it for later
    9191                andi.w  #0x0180,d0              | see if we're already in bank 0
    9292                beq     dlyscrl                 | jump if so
    9393
    94                 clr.w   _v_regs+VSDD_R5         | set bank 0
    95 
    96                 move.w  _v_regs+VSDD_R11,VIct2  | save the VSDD R11 value
    97 
    98 vw1a:           cmp.w   #VT_1,_v_regs+VSDD_R11  | wait for FRAMESTOP
     94                clr.w   v_regs+VSDD_R5          | set bank 0
     95
     96                move.w  v_regs+VSDD_R11,VIct2   | save the VSDD R11 value
     97
     98vw1a:           cmp.w   #VT_1,v_regs+VSDD_R11   | wait for FRAMESTOP
    9999                bcc     vw1a                    | ...
    100100
    101 vw2a:           cmp.w   #VT_1,_v_regs+VSDD_R11  | ...
     101vw2a:           cmp.w   #VT_1,v_regs+VSDD_R11   | ...
    102102                bcs     vw2a                    | ...
    103103
    104 vw3a:           cmp.w   #VT_1,_v_regs+VSDD_R11  | ...
     104vw3a:           cmp.w   #VT_1,v_regs+VSDD_R11   | ...
    105105                bcc     vw3a                    | ...
    106106
    107 vw4a:           cmp.w   #VT_2,_v_regs+VSDD_R11  | ...
     107vw4a:           cmp.w   #VT_2,v_regs+VSDD_R11   | ...
    108108                bcs     vw4a                    | ...
    109109
    110 dlyscrl:        tst.w   _vi_tag                 | wait for previous scroll
     110dlyscrl:        tst.w   vi_tag                  | wait for previous scroll
    111111                bne     dlyscrl                 | ...
    112112
    113                 move.w  _vi_sadr,lclsadr        | save address for timeint
    114                 move.w  _vi_scrl,lclscrl        | save offset for timeint
    115                 clr.w   _vi_sadr                | reset for next time
    116                 clr.w   _vi_scrl                | ...
    117                 move.w  vdelay,_vi_clk          | set the scroll delay timer
    118                 st      _vi_tag                 | set the 'need service' tag
     113                move.w  vi_sadr,lclsadr         | save address for timeint
     114                move.w  vi_scrl,lclscrl         | save offset for timeint
     115                clr.w   vi_sadr                 | reset for next time
     116                clr.w   vi_scrl                 | ...
     117                move.w  vdelay,vi_clk           | set the scroll delay timer
     118                st      vi_tag                  | set the 'need service' tag
    119119| ------------------------------------------------------------------------------
    120120| check for unblank requests
    121121| ------------------------------------------------------------------------------
    122                 move.w  _vi_ctl,d2              | get the unblank control word
     122                move.w  vi_ctl,d2               | get the unblank control word
    123123                beq     viexit                  | exit if nothing to unblank
    124124
    125125                bra     unblnk                  | go unblank some objects
    126126
    127 viunbl:         move.w  _vi_ctl,d2              | get the unblank control word
     127viunbl:         move.w  vi_ctl,d2               | get the unblank control word
    128128                beq     vidone                  | exit if nothing to unblank
    129129
    130                 move.w  _v_regs+VSDD_R5,d0      | get VSDD R5
     130                move.w  v_regs+VSDD_R5,d0       | get VSDD R5
    131131                move.w  d0,d1                   | save it for later
    132132                andi.w  #0x0180,d0              | see if we're already in bank 0
    133133                beq     unblnk                  | jump if so
    134134
    135                 clr.w   _v_regs+VSDD_R5         | set bank 0
    136 
    137                 move.w  _v_regs+VSDD_R11,VIct3  | save the VSDD R11 value
    138 
    139 vw1b:           cmp.w   #VT_1,_v_regs+VSDD_R11  | wait for FRAMESTOP
     135                clr.w   v_regs+VSDD_R5          | set bank 0
     136
     137                move.w  v_regs+VSDD_R11,VIct3   | save the VSDD R11 value
     138
     139vw1b:           cmp.w   #VT_1,v_regs+VSDD_R11   | wait for FRAMESTOP
    140140                bcc     vw1b                    | ...
    141141
    142 vw2b:           cmp.w   #VT_1,_v_regs+VSDD_R11  | ...
     142vw2b:           cmp.w   #VT_1,v_regs+VSDD_R11   | ...
    143143                bcs     vw2b                    | ...
    144144
    145 vw3b:           cmp.w   #VT_1,_v_regs+VSDD_R11  | ...
     145vw3b:           cmp.w   #VT_1,v_regs+VSDD_R11   | ...
    146146                bcc     vw3b                    | ...
    147147
    148 vw4b:           cmp.w   #VT_2,_v_regs+VSDD_R11  | ...
     148vw4b:           cmp.w   #VT_2,v_regs+VSDD_R11   | ...
    149149                bcs     vw4b                    | ...
    150150
     
    152152
    153153| ------------------------------------------------------------------------------
    154 | unblank objects indicated by contents of d2  (loaded earlier from _vi_ctl)
     154| unblank objects indicated by contents of d2  (loaded earlier from vi_ctl)
    155155| ------------------------------------------------------------------------------
    156156
    157157unblnk:         clr.w   d3                      | clear the counter
    158                 clr.w   _vi_ctl                 | clear the unblank control word
    159                 lea     _v_odtab,a1             | point at first object
     158                clr.w   vi_ctl                  | clear the unblank control word
     159                lea     v_odtab,a1              | point at first object
    160160
    161161vicheck:        btst    d3,d2                   | check the object bit
     
    181181                beq     vidone                  | jump if so
    182182
    183 viwait:         tst.w   _vi_tag                 | wait for timer to run out
     183viwait:         tst.w   vi_tag                  | wait for timer to run out
    184184                bne     viwait                  | ... so timeint sees bank 0
    185185
    186                 move.w  d1,_v_regs+VSDD_R5      | restore v_regs[5] to old bank
    187 
    188                 move.w  _v_regs+VSDD_R11,VIct4  | save the VSDD R11 value
    189 
    190 vw1c:           cmp.w   #VT_1,_v_regs+VSDD_R11  | wait for FRAMESTOP
     186                move.w  d1,v_regs+VSDD_R5       | restore v_regs[5] to old bank
     187
     188                move.w  v_regs+VSDD_R11,VIct4   | save the VSDD R11 value
     189
     190vw1c:           cmp.w   #VT_1,v_regs+VSDD_R11   | wait for FRAMESTOP
    191191                bcc     vw1c                    | ...
    192192
    193 vw2c:           cmp.w   #VT_1,_v_regs+VSDD_R11  | ...
     193vw2c:           cmp.w   #VT_1,v_regs+VSDD_R11   | ...
    194194                bcs     vw2c                    | ...
    195195
    196 vw3c:           cmp.w   #VT_1,_v_regs+VSDD_R11  | ...
     196vw3c:           cmp.w   #VT_1,v_regs+VSDD_R11   | ...
    197197                bcc     vw3c                    | ...
    198198
    199 vw4c:           cmp.w   #VT_2,_v_regs+VSDD_R11  | ...
     199vw4c:           cmp.w   #VT_2,v_regs+VSDD_R11   | ...
    200200                bcs     vw4c                    | ...
    201201
     
    219219| ------------------------------------------------------------------------------
    220220
    221 _vi_sadr:       .ds.w   1                       | score object base address
    222 _vi_scrl:       .ds.w   1                       | score object scroll offset
     221vi_sadr:        .ds.w   1                       | score object base address
     222vi_scrl:        .ds.w   1                       | score object scroll offset
    223223
    224224lclsadr:        .ds.w   1                       | local copy of vi_sadr
  • vlib/vputa.s

    r84c0125 r8325447  
    1414                .text
    1515
    16                 .xdef   _vputa
     16                .xdef   vputa
    1717
    1818SBASE           =       8               | LONG - 'sbase'
     
    2121ATTR            =       16              | WORD - 'attrib'
    2222
    23 _vputa:         link    a6,#0           | Link stack frame pointer
     23vputa:          link    a6,#0           | Link stack frame pointer
    2424                clr.l   d0              | Clear out d0
    2525                move.w  ROW(a6),d0      | Get row
  • vlib/vputc.s

    r84c0125 r8325447  
    1414                .text
    1515
    16                 .xdef   _vputc
     16                .xdef   vputc
    1717
    18 _vputc:         link    a6,#0           | Link stack frame pointer
     18vputc:          link    a6,#0           | Link stack frame pointer
    1919                clr.l   d0              | Clear out d0
    2020                move.w  12(a6),d0       | Get row
  • vlib/vputcv.s

    r84c0125 r8325447  
    1515                .text
    1616
    17                 .xdef   _vputcv
     17                .xdef   vputcv
    1818
    1919P_ADR           =       8
     
    2626                .page
    2727
    28 _vputcv:        link    a6,#0           | Link stack frame pointer
     28vputcv:         link    a6,#0           | Link stack frame pointer
    2929                move.w  P_ROW(a6),d0    | Get row
    3030                mulu    P_LEN(a6),d0    | Multiply by len
  • vlib/vputp.s

    r84c0125 r8325447  
    3232                .text
    3333
    34                 .xdef   _vputp
     34                .xdef   vputp
    3535
    3636OCTAD           =       8
     
    5151                .page
    5252
    53 _vputp:         link    a6,#0                   | Link stack frames
     53vputp:          link    a6,#0                   | Link stack frames
    5454                movea.l OCTAD(a6),a1            | Get OCTAD base into a1
    5555                move.w  XLOC(a6),d0             | Get XLOC into d0
  • vlib/vsetav.s

    r84c0125 r8325447  
    1414                .text
    1515
    16                 .xdef   _vsetav
     16                .xdef   vsetav
    1717
    1818P_ADR           =       8
     
    2222P_LEN           =       18
    2323
    24 _vsetav:        link    a6,#0           | Link stack frame pointer
     24vsetav:         link    a6,#0           | Link stack frame pointer
    2525                move.w  P_ROW(a6),d0    | Get row
    2626                mulu    P_LEN(a6),d0    | Multiply by len
  • vlib/vsetcv.s

    r84c0125 r8325447  
    1414                .text
    1515
    16                 .xdef   _vsetcv
     16                .xdef   vsetcv
    1717
    1818P_ADR           =       8
     
    2222P_LEN           =       18
    2323
    24 _vsetcv:        link    a6,#0           | Link stack frame pointer
     24vsetcv:         link    a6,#0           | Link stack frame pointer
    2525                move.w  P_ROW(a6),d0    | Get row
    2626                mulu    P_LEN(a6),d0    | Multiply by len
  • vlib/vsplot4.s

    r84c0125 r8325447  
    2424                .text
    2525
    26                 .xdef   _vsplot4
     26                .xdef   vsplot4
    2727
    2828| Argument offsets from a6:
     
    6969                .page
    7070
    71 _vsplot4:       link    a6,#0           | Link stack frames
     71vsplot4:        link    a6,#0           | Link stack frames
    7272                movem.l d3-d6/a3,-(a7)  | Save registers we use
    7373                move.w  #PSHIFT,d1      | Set shift constant
  • vlib/vvputsv.s

    r84c0125 r8325447  
    2222                .text
    2323
    24                 .xdef   _vvputsv
     24                .xdef   vvputsv
    2525
    2626| Argument offsets from a6:
     
    6868                .page
    6969
    70 _vvputsv:       link    a6,#0           | Link stack frames
     70vvputsv:        link    a6,#0           | Link stack frames
    7171                movem.l d3-d6/a3,-(a7)  | Save registers we use
    7272                move.w  #PSHIFT,d1      | Set shift constant
  • vlib/vwputp.s

    r84c0125 r8325447  
    3535                .text
    3636
    37                 .xdef   _vputp
     37                .xdef   vputp
    3838
    3939OCTAD           =       8
Note: See TracChangeset for help on using the changeset viewer.