diff options
| author | sik | 2014-12-07 08:15:17 -0300 |
|---|---|---|
| committer | sik | 2014-12-07 08:15:17 -0300 |
| commit | 96ffc8dd7d1528c0297bdfbc1ac18548c75dee11 (patch) | |
| tree | 8b1a233aa7b9b7f8de412d6192a78e4b9a408f96 | |
| parent | 64ff95f1ed27c26ad306f8e2120f80f6b0333952 (diff) | |
Patch, fixing some severe panning bug
| -rw-r--r-- | README | 14 | ||||
| -rwxr-xr-x | build.sh | 2 | ||||
| -rw-r--r-- | built/prog-z80.bin | bin | 0 -> 4864 bytes |
3 files changed, 9 insertions, 7 deletions
@@ -7,12 +7,12 @@ | | |_ |_ ___ | | | | | | | | | |_______ |_ |___| _| | | | | |_ |_____| _| |___________| |________| |___| |___| |_________| - ___ ___ _ _ ___ __ ___ ___ ___ _ ___ ___ _ ___ - | _| | | | | \ | _| | _| | | _| | | |_ | - | |_| | | | | | | | | | |_| | | |_| | | | |_ _ _ ___ ___ | | _| | - |_ | | | | | | | | | | _| | | | | | | | _| | | | __| _ \ | | | _| - _| | | | | | | | | | | |_| | | | | | | | |_ | | | __| /_ | |_| |_ - |___|___|___|_|_|__/ |___|_|_|___|_|_|_|___| \_/|___|_|_\_| |_|_|___| + ___ ___ _ _ ___ __ ___ ___ ___ _ ___ ___ _ ___ _ + | _| | | | | \ | _| | _| | | _| | | |_ | | + | |_| | | | | | | | | | |_| | | |_| | | | |_ _ _ ___ ___ | | _| | | + |_ | | | | | | | | | | _| | | | | | | | _| | | | __| _ \ | | | _| | + _| | | | | | | | | | | |_| | | | | | | | |_ | | | __| /_ | |_| |_| | + |___|___|___|_|_|__/ |___|_|_|___|_|_|_|___| \_/|___|_|_\_| |_|_|___|_| ============================================================================= @@ -54,7 +54,7 @@ documentation for the C API is in "doc/c-api.txt". * Assemble tester/build.68k to bin/prog-68k.bin (optional) Sorry for not providing a build script but my current setup is a mess and -needs to be changed x_x; Currently using z80-asm to build the Z80 code and +needs to be changed x_x; Currently using z80asm to build the Z80 code and asm68k to build the 68000 code, I need to find good replacements for both (z80-asm for being crappy, asm68k for not being free). diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..2ac8ea3 --- /dev/null +++ b/build.sh @@ -0,0 +1,2 @@ +#!/bin/sh +z80asm -i src-z80/build.z80 -o prog-z80.bin diff --git a/built/prog-z80.bin b/built/prog-z80.bin Binary files differnew file mode 100644 index 0000000..ab611ba --- /dev/null +++ b/built/prog-z80.bin |
