Changeset 84c0125 in buchla-68k for vlib/vcputs.s


Ignore:
Timestamp:
08/07/2017 01:05:57 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8325447
Parents:
15854f1
Message:

Fix * in comments.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlib/vcputs.s

    r15854f1 r84c0125  
    66
    77|       vcputs(obase, nw, fg, bg, row, col, str)
    8 |       int |obase, nw, fg, bg, row, col;
    9 |       char |str;
     8|       int *obase, nw, fg, bg, row, col;
     9|       char *str;
    1010
    1111|               Outputs characters from the string at 'str' to an 'nw'
     
    7373                move.w  ROW(a6),d0      | Calculate output address
    7474                move.w  #VPIX,d1        | ... VPIX
    75                 mulu    d1,d0           | ... | ROW
     75                mulu    d1,d0           | ... * ROW
    7676                add.w   #VPIX-1,d0      | ... + VPIX-1
    77                 mulu    d5,d0           | ... | NW
     77                mulu    d5,d0           | ... * NW
    7878                clr.l   d1              | ...
    7979                move.w  COL(a6),d1      | ... +
    80                 lsl.w   #2,d1           | ... COL | 4
     80                lsl.w   #2,d1           | ... COL * 4
    8181                add.l   d1,d0           | ...
    8282                add.l   OBASE(a6),d0    | ... + OBASE
     
    9191                adda.l  #HCW,a3         | Update output pointer for next char.
    9292                lea     _cgtable,a0     | Establish CG pointer in a0
    93                 lsl.w   #1,d0           | ... 2 | character
     93                lsl.w   #1,d0           | ... 2 * character
    9494                adda.w  d0,a0           | ... + _cgtable address
    9595                move.w  #VPIX-1,d6      | Set scan line counter in d6
Note: See TracChangeset for help on using the changeset viewer.