README: add Atari executable skeleton

This commit is contained in:
Piotr Wiszowaty 2014-07-21 21:07:33 +02:00 committed by Piotr Wiszowaty
parent ea028ac378
commit 049a45ef4c
1 changed files with 19 additions and 0 deletions

View File

@ -58,6 +58,25 @@ order: `init`, `boot`, `data`, `code` or other - specified by the user.
Examples
--------
Atari XL/XE executable skeleton. Uses xasm a a backend.
<pre><code>
[section] init
[code]
org $2000
[end-code]
: main
begin
...
again ;
[code]
run boot
[end-code]
</code></pre>
Atari XL/XE example: display character table as 16x16 array.
Uses xasm as a backend.