Changeset 84920eb in buchla-68k


Ignore:
Timestamp:
07/20/2017 08:42:17 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
4d3e5a4
Parents:
cd1d0db
Message:

Fixed wrongly replaced multiplications.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ram/sedisp.s

    rcd1d0db r84920eb  
    120120NGDSEL          =       17              | number of event slots in gdstb
    121121
    122 BARFLAG         =       4|(NGDSEL-1)    | offset to the bar marker flag
     122BARFLAG         =       4*(NGDSEL-1)    | offset to the bar marker flag
    123123
    124124                .page
  • rom/bios.s

    rcd1d0db r84920eb  
    37333733
    37343734_rsflag:        .ds.l   1               | Register save area overflow flag
    3735                 .ds.l   18|32           | Register save area  (32 levels)
     3735                .ds.l   18*32           | Register save area  (32 levels)
    37363736rsarea:         .ds.l   1               | Dummy long word at top of save area
    37373737
     
    37813781dskmode:        .ds.b   2               | Disk change mode table
    37823782dskerrs:        .ds.w   2               | Disk error code table
    3783 drvbpbs:        .ds.w   16|2            | Disk BPB save area
     3783drvbpbs:        .ds.w   16*2            | Disk BPB save area
    37843784
    37853785                .endc
  • rom/lowram.s

    rcd1d0db r84920eb  
    156156                .even
    157157
    158 basedat:        .ascii  "||||| data |||||"              | start of data
     158basedat:        .ascii  "***** data *****"              | start of data
    159159
    160160pmsg:           .asciz  "returned from start_()"        | panic() message
Note: See TracChangeset for help on using the changeset viewer.