source: buchla-68k/lib700/finalone.s@ 4f508e6

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

Converted assembly language files.

  • Property mode set to 100644
File size: 774 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.