1
0
mirror of https://github.com/specht/champ.git synced 2024-06-08 13:29:29 +00:00
champ/README.md

155 lines
5.4 KiB
Markdown
Raw Normal View History

2018-02-14 22:17:10 +00:00
# Champ - N. Harold Cham's 65C02 Profiler
2018-02-15 10:08:27 +00:00
This is a 6502/65C02 emulator / profiler that enables you to really get to know your APPLE ][ HiRes Graphics Mode Demo.
2018-02-14 22:24:11 +00:00
## Features
2018-02-14 22:51:13 +00:00
* full, cycle-accurate 65C02 emulation
2018-02-14 22:24:11 +00:00
* screen output as animated GIF with exact frame timing
* average frame rate
* see how much time is spent in which subroutine
* watch variables (single variables or pairs)
2018-02-14 22:35:32 +00:00
* no dependencies except Ruby, gcc and Merlin32
2018-02-14 22:31:56 +00:00
## Usage
First, make sure you have gcc, ruby and Merlin32 installed. You need to prepare a YAML file to tell champ about all source and object files and their memory locations.
2018-02-14 22:50:42 +00:00
Take `plot3d.yaml` for example (using [Marc A. Golombeck's excellent 3D-Demo](https://github.com/mgolombeck/3D-Demo)):
2018-02-14 22:31:56 +00:00
```
load:
2018-02-14 22:41:18 +00:00
0x6000: plot3d/plot3d242.s
0x1200: plot3d/multtab.s
0x8400: plot3d/ldrwtab.s
0x8900: plot3d/SINETABLE
0x8b00: plot3d/object2.s
0x9000: plot3d/object1.s
0x9500: plot3d/FONT
0xb600: plot3d/projtab.s
2018-02-14 22:31:56 +00:00
entry: ENTRY
instant_rts:
- LOAD1
```
2018-02-15 12:08:44 +00:00
We specified some source files (which will get compiled automatically) and some object files along with their locations in memory (`load`). We also specified the entry point for our program (`entry`), this can be a label or an address.
2018-02-14 22:31:56 +00:00
2018-02-14 22:42:13 +00:00
Furthermore, we can disable subroutines by replacing the first opcode with a RTS (`instant_rts`). This is necessary in some cases because Champ does not emulate hardware and thus can not load data from disk, for example.
2018-02-14 22:31:56 +00:00
2018-02-16 14:05:05 +00:00
### Running the profiler
To start champ, type:
```
$ ./champ.rb --max-frames 100 plot3d.yaml
```
This will run the emulator and write the HTML report to `report.html`. If you do not specify the maximum number of frames, you can still cancel the emulator by pressing Ctrl+C at any time. If you need fast results and don't need the animated GIF of all frames, specify the `--no-animation` flag, which will still give you all the information but without the animation.
## Example report
![Champ Screenshot](doc/screenshot.png?raw=true "Fig. 1 Champ Screenshot")
2018-02-16 11:51:57 +00:00
### Defining watches
2018-02-16 14:05:05 +00:00
You can watch registers or variables at certain program counter addresses by inserting a _champ directive_ in a comment after the respective code line in your assembler source code. All champ directives start with an _at sign_ (`@`). Here's an example ([example01.yaml](example01.yaml) / [example01.s](example01.s)):
2018-02-16 11:51:57 +00:00
```
2018-02-16 14:05:05 +00:00
DSK test
MX %11
ORG $6000
FOO EQU $8000
JSR TEST
RTS
TEST LDA #64 ; load 64 into accumulator
ASL ; multiply by two @Au
STA FOO ; store result @Au
RTS
2018-02-16 11:51:57 +00:00
```
2018-02-16 14:05:05 +00:00
Running this example results in the following watch graphs:
![A at PC 0x6006](doc/example01_1.gif?raw=true)
![A at PC 0x6007](doc/example01_2.gif?raw=true)
Champ generates a graph for every watch. You can see the watched variable plotted against the cycles, and also the PC address, file name, and source line number of the watch as well as the subroutine in which the watch was defined.
2018-02-16 11:51:57 +00:00
With the `@Au` directive, we tell champ to monitor the A register and interpret it as an unsigned 8 bit integer (likewise, `@As` would treat the value as a signed 8 bit integer).
2018-02-16 14:05:05 +00:00
By default, all champ values get recorded before the operation has been executed. To get the value after the operation, you can write: `@Au(post)`. Feel free to add as many champ directives as you need in a single line, each starting with a new at sign.
2018-02-16 11:51:57 +00:00
2018-02-16 14:05:05 +00:00
### Global variables
2018-02-16 11:51:57 +00:00
2018-02-16 14:05:05 +00:00
In addition to watching individual registers, you can also watch global variables (([example02.yaml](example02.yaml) / [example02.s](example02.s))):
2018-02-14 22:35:32 +00:00
```
2018-02-16 14:05:05 +00:00
DSK test
MX %11
ORG $6000
FOO EQU $8000 ; @u16
JSR TEST
RTS
TEST LDA #0
STA FOO
LDA #$40
STA FOO+1 ; @FOO(post)
RTS
2018-02-14 22:35:32 +00:00
```
2018-02-16 14:05:05 +00:00
Here, we declare the type of the global variable in the same place the variable itself is declared, using @u8@, @s8@, @u16@, or @s16@. Later, we can just watch the variable by issuing a champ directive like `@FOO@`. In this example, we use the `(post)` option to see the variable contents after the `STA` operation.
2018-02-14 22:35:32 +00:00
2018-02-16 14:05:05 +00:00
![FOO at PC 0x600b](doc/example02_1.gif?raw=true)
2018-02-14 22:36:04 +00:00
2018-02-16 14:05:05 +00:00
Here's another example with some more interesting plots ([example03.yaml](example03.yaml) / [example03.s](example03.s)):
```
DSK test
MX %11
ORG $6000
FOO EQU $8000
JSR TEST
RTS
TEST LDX #$FF
LDA #1
LOOP TAY
TXA
EOR #$FF
LSR
LSR
STA FOO
TYA
ADC FOO ; @Au(post)
DEX ; @Xu(post)
BNE LOOP
```
2018-02-16 14:16:35 +00:00
This is a small program which lets the accumulator grow quadratically while X decreases linearly:
2018-02-16 14:05:05 +00:00
![A at PC 0x6012](doc/example03_1.gif?raw=true)
![X at PC 0x6015](doc/example03_2.gif?raw=true)
### Two-dimensional watches
We can also watch pairs of variables by separating them with a comma in the champ directive:
```
DEX ; @Xu(post) @Au,FOO(post)
```
This will plot FOO against X:
![FOO against A at PC 0x6015](doc/example03_3.gif?raw=true)
2018-02-14 22:31:56 +00:00
2018-02-14 22:36:04 +00:00
## Did you know?
2018-02-16 14:05:05 +00:00
By the way, there's a full-fledged, incremental, standalone, no-dependencies GIF encoder in [pgif.c](pgif.c) that writes animated GIFs and uses some optimizations to further minimize space. It's stream-friendly and as you feed pixels in via `stdin`, it dutifully writes GIF data to `stdout` until `stdin` gets closed.