jmechner
100755 64 lines (46 sloc) 1.183 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
* purple (put this file!!!)

* This code sets $DA in aux mem to 1
* if signature is found on track zero.

PURPrun = $6321

PURPLE
 ldy #PURPrun
 lda #>PURPrun

 jsr PURPsub
 jsr PURPjmp

* Note: first byte of next junk must be $60 (rts)
*-------------------------------------------------

PURPcode
 hex 60386018EAA8E7108849450040994825
 hex FB10C08CBD48852AFB10C08CBD498500
 hex A9E7D096C9FB10C08CBD03A0F2D0AAC9
 hex FB10C08CBDEAF0D0D5C9FB10C08CBD3D
 hex F048E604D0C84884FDA060F1D00DE0E8
 hex 62549D409440B56254BC00A2E7FCEEE7
 hex FCEEEEFC63384C0BF044C66018BFFB9D
 hex CD952ABFFC9D00A963BE2063AF4C0330
 hex F4108805D046D1FB10C08CBD07A0F4D0
 hex EEC914F088FB10C08CBD062410A0C08D
 hex BD23D0E7C9FB10C08CBD2CD0E7C9FB10
 hex C08CBDF4D0E7C939F088FB10C08CBD00
 hex A0F4D0D5C947F088FB10C08CBD00A0F1
 hex D007C941A557B063D0205CF045C64585
 hex 80A9478563A94685B6A9C08EBDC089BD
 hex FDA644850AA963BE20

*-------------------------------------------------

PURPlen = *-PURPcode

* Routine to decode code

 hex 20

PURPsub
 sty 4
 sta 5

 ldy #0

 ldx #PURPlen
:0 dex
 lda PURPcode,x
 sta (4),y
 iny
 bne :0

 rts

 hex 2c

PURPjmp jmp (4)

*------------------------------------------------- EOF

Markdown Cheat Sheet

Format Text

Headers

# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag

Text styles

*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__

*You **can** combine them*

Lists

Unordered

* Item 1
* Item 2
  * Item 2a
  * Item 2b

Ordered

1. Item 1
2. Item 2
3. Item 3
   * Item 3a
   * Item 3b

Miscellaneous

Images

![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)

Links

http://github.com - automatic!
[GitHub](http://github.com)

Blockquotes

As Kanye West said:

> We're living the future so
> the present is our past.

Code Examples in Markdown

Syntax highlighting with GFM

```javascript
function fancyAlert(arg) {
  if(arg) {
    $.facebox({div:'#foo'})
  }
}
```

Or, indent your code 4 spaces

Here is a Python code example
without syntax highlighting:

    def foo:
      if not bar:
        return true

Inline code for comments

I think you should use an
`<addr>` element here instead.

Something went wrong with that request. Please try again. Dismiss

Looking for the GitHub logo?