Changeset 4cfe69a in buchla-68k for ram/timeint.s


Ignore:
Timestamp:
07/16/2017 03:10:36 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
62340ef
Parents:
5117699
Message:

Use .ds and .dc pseudo-ops. Generate debug symbols.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/timeint.s

    r5117699 r4cfe69a  
    367367| we define them here and ignore the ones in the bios.
    368368
    369 tdiv1:          ds.w    1               | Timer divider 1  (divides HZ_1K)
    370 tdiv2:          ds.w    1               | Timer divider 2  (divides HZ_200)
    371 
    372 | ------------------------------------------------------------------------------
    373 
    374 _timers:        ds.w    NTIMERS         | Timer array -- short timers[NTIMERS];
    375 
    376 _vi_clk:        ds.w    1               | VSDD scroll delay timer
    377 _vi_tag:        ds.w    1               | VSDD VI 'needs service' tag
    378 
    379 _S1IoRec:       ds.l    1               | address of RS232 channel 1 IoRec
    380 _S2IoRec:       ds.l    1               | address of RS232 channel 2 IoRec
    381 _M1IoRec:       ds.l    1               | address of MIDI channel 1 IoRec
    382 _M2IoRec:       ds.l    1               | address of MIDI channel 2 IoRec
     369tdiv1:          .ds.w   1               | Timer divider 1  (divides HZ_1K)
     370tdiv2:          .ds.w   1               | Timer divider 2  (divides HZ_200)
     371
     372| ------------------------------------------------------------------------------
     373
     374_timers:        .ds.w   NTIMERS         | Timer array -- short timers[NTIMERS];
     375
     376_vi_clk:        .ds.w   1               | VSDD scroll delay timer
     377_vi_tag:        .ds.w   1               | VSDD VI 'needs service' tag
     378
     379_S1IoRec:       .ds.l   1               | address of RS232 channel 1 IoRec
     380_S2IoRec:       .ds.l   1               | address of RS232 channel 2 IoRec
     381_M1IoRec:       .ds.l   1               | address of MIDI channel 1 IoRec
     382_M2IoRec:       .ds.l   1               | address of MIDI channel 2 IoRec
    383383| ==============================================================================
    384384
Note: See TracChangeset for help on using the changeset viewer.