source: buchla-68k/lib700/finalone.s

Last change on this file was 4cfe69a, checked in by Thomas Lopatic <thomas@…>, 7 years ago

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

  • Property mode set to 100644
File size: 775 bytes
Line 
1| ------------------------------------------------------------------------------
2| finalone.s -- the last stuff to get loaded
3| Version 4 -- 1987-06-30 -- D.N. Lynx Crowe
4
5| This is so we can figure out where things got loaded.
6| ------------------------------------------------------------------------------
7
8 .text
9
10 .xdef FinalOne
11 .xdef The_Fini
12 .xdef Text_End
13
14
15| This is the last piece of code in the 'text' segment.
16
17FinalOne: rts | we just need the address here
18
19Text_End: rts | we just need the address here
20
21| ------------------------------------------------------------------------------
22
23 .data
24 .even
25
26The_Fini: .dc.w 0xFFFF | last thing in the 'data' segment
27
28| ------------------------------------------------------------------------------
29
30 .end
Note: See TracBrowser for help on using the repository browser.