Last change
on this file since 66072f0 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
|
Rev | Line | |
---|
[4f508e6] | 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 |
|
---|
[f40a309] | 8 | .text
|
---|
[4f508e6] | 9 |
|
---|
[f40a309] | 10 | .xdef FinalOne
|
---|
| 11 | .xdef The_Fini
|
---|
| 12 | .xdef Text_End
|
---|
[4f508e6] | 13 |
|
---|
| 14 |
|
---|
| 15 | | This is the last piece of code in the 'text' segment.
|
---|
| 16 |
|
---|
| 17 | FinalOne: rts | we just need the address here
|
---|
| 18 |
|
---|
| 19 | Text_End: rts | we just need the address here
|
---|
| 20 |
|
---|
| 21 | | ------------------------------------------------------------------------------
|
---|
| 22 |
|
---|
[f40a309] | 23 | .data
|
---|
| 24 | .even
|
---|
[4f508e6] | 25 |
|
---|
[4cfe69a] | 26 | The_Fini: .dc.w 0xFFFF | last thing in the 'data' segment
|
---|
[4f508e6] | 27 |
|
---|
| 28 | | ------------------------------------------------------------------------------
|
---|
| 29 |
|
---|
[f40a309] | 30 | .end
|
---|
Note:
See
TracBrowser
for help on using the repository browser.