Skip to content
This repository was archived by the owner on Dec 24, 2020. It is now read-only.

Commit

Permalink
Make C1P screen sharper, add support for C1P JSON files, and add more…
Browse files Browse the repository at this point in the history
… C1P README files
  • Loading branch information
jeffpar committed May 10, 2016
1 parent 5109746 commit 4e54d76
Show file tree
Hide file tree
Showing 46 changed files with 2,199 additions and 54 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ encoding: UTF-8

# Build settings

exclude: ["index.html", "**/index.html", "archive", "**/archive", "**/c64", "logs", "node_modules", "src", "**/src", "tmp", "**/tmp", "videos", "web", ".git", ".idea"]
exclude: ["**/index.html", "**/archive", "**/c64", "logs", "node_modules", "projects", "src", "**/src", "tmp", "**/tmp", "videos", "web", ".git", ".idea"]
markdown: kramdown
kramdown:
input: GFM
Expand Down
16 changes: 16 additions & 0 deletions apps/c1p/6502/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: page
title: Challenger 1P Machine-Language (6502) Applications
permalink: /apps/c1p/6502/
---

Challenger 1P Machine-Language (6502) Applications
---

The project contains the following 6502 machine-language tests:

- [BCD](tests/bcd/bcd.asm): Verify decimal mode behavior
- [VFLAG](tests/vflag/vflag.asm): Demonstrate that the V flag works as described

Along with a variety of [6502 Machine-Language Programs](jeffpar/) written by [Jeff Parsons](https://twitter.com/jeffpar)
in 1979-1980.
15 changes: 15 additions & 0 deletions apps/c1p/6502/jeffpar/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
layout: page
title: Challenger 1P Machine-Language (6502) Programs
permalink: /apps/c1p/6502/jeffpar/
---

Challenger 1P Machine-Language (6502) Programs
---

The project contains the following 6502 machine-language programs written by [Jeff Parsons](https://twitter.com/jeffpar)
in 1979-1980:

- [6502 Assembler/Disassembler](assembler/ASSEMBLER-1.json)
- [BASIC Extensions](basicext/BASICEXT.json)
- [Game of Life](life/LIFE.json)
Binary file added apps/c1p/6502/jeffpar/assembler/ASSEMBLER-1.bin
Binary file not shown.
203 changes: 203 additions & 0 deletions apps/c1p/6502/jeffpar/assembler/ASSEMBLER-1.json

Large diffs are not rendered by default.

Binary file added apps/c1p/6502/jeffpar/assembler/ASSEMBLER-2.bin
Binary file not shown.
5 changes: 5 additions & 0 deletions apps/c1p/6502/jeffpar/assembler/ASSEMBLER-2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{"bytes": [
0x00,0x00,0x82,0x84,0x04,0x00,0x04,0x00,0x00,0x00,0x5E,0x48,0xCD,0x15,0x02,0xD0, // 0x00000000 ..........^H....
0x03,0x4C,0x0B,0x19,0x4C,0x96,0x18,0xA0,0x00,0x8C,0xC4,0x14,0x4C,0xBC,0x18,0x20, // 0x00000010 .L..L.......L..
0x42] // 0x00000020 B
}
Loading

0 comments on commit 4e54d76

Please sign in to comment.