Changeset 84c0125 in buchla-68k for vlib/glcplot.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/glcplot.s

    r15854f1 r84c0125  
    2828
    2929_GLCplot:       link    a6,#0                   | Link stack frames
    30                 moveq   #63,d0                  | d0 = (63-y) | 85
     30                moveq   #63,d0                  | d0 = (63-y) * 85
    3131                sub.w   YLOC(a6),d0             | ...
    3232                mulu    #85,d0                  | ...
     
    3434                move.w  XLOC(a6),d1             | ...
    3535                divu    #6,d1                   | ...
    36                 add.w   d1,d0                   | d0 = (63-y)|85 + (x/6)
     36                add.w   d1,d0                   | d0 = (63-y)*85 + (x/6)
    3737                swap    d1                      | d2 = 7 - (x%6) % 8
    3838                moveq   #7,d2                   | ...
Note: See TracChangeset for help on using the changeset viewer.