-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb04226
commit c2332b4
Showing
14 changed files
with
536 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
obj/ | ||
bin/ | ||
src/gfx/*.c | ||
src/gfx/*.h | ||
src/gfx/*.8xv | ||
.DS_Store | ||
convimg.out | ||
*.8xv | ||
*.8xp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"transfer_files": | ||
[ | ||
"bin/DEMO.8xp", | ||
"src/gfx/vargfx.8xv" | ||
], | ||
"target": | ||
{ | ||
"name": "DEMO", | ||
"isASM": true | ||
}, | ||
"sequence": | ||
[ | ||
"action|launch", | ||
"delay|500", | ||
"hashWait|1", | ||
"key|enter", | ||
"hashWait|2" | ||
], | ||
"hashes": | ||
{ | ||
"1": | ||
{ | ||
"description": "Test tilemap fullscreen image display", | ||
"start": "vram_start", | ||
"size": "vram_8_size", | ||
"expected_CRCs": [ "94A5E1D6" ] | ||
}, | ||
"2": | ||
{ | ||
"description": "Test program exit", | ||
"start": "vram_start", | ||
"size": "vram_16_size", | ||
"expected_CRCs": [ "FFAF89BA", "101734A5", "9DA19F44", "A32840C8", "349F4775" ] | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# ---------------------------- | ||
# Makefile Options | ||
# ---------------------------- | ||
|
||
NAME = CIRIGHT | ||
ICON = icon.png | ||
DESCRIPTION = "Gay game" | ||
COMPRESSED = NO | ||
ARCHIVED = YES | ||
|
||
CFLAGS = -Wall -Wextra -Oz | ||
CXXFLAGS = -Wall -Wextra -Oz | ||
|
||
# ---------------------------- | ||
|
||
include $(shell cedev-config --makefile) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
### CopyRight Infringement Regressive Right for TI 83 CE | ||
|
||
This is a port of my smallish game for the TI 83CE. | ||
It's a decent port all things considered but i didn't put too much effort into it. | ||
Internal resolution for the frames are 160x100 which are then scaled up to 320x200, | ||
on top of being ZX0 compressed. | ||
Thankfully the eZ80 inside has plenty of horse power to do stuff like that. | ||
Also other lower end Z80 machines would be too slow for ZX0 in real time whereas | ||
this is quite capable indeed. | ||
So much in fact that ZX1 is not even provided in the toolchain, only ZX7 and ZX0. | ||
|
||
# Usage | ||
|
||
Make sure to transfer vargci.8xv (as an archive, it should do so automatically) and CIRIGHT.8xp. | ||
Once that's done, unarchive the game CIRIGHT.8xp either from the memory screen (2nd + Mem) | ||
or using 2nd+Catalog and then use the UnArchiv command. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
palettes: | ||
- name: global_palette | ||
fixed-entries: | ||
- color: {index: 0, r: 0, g: 0, b: 0} | ||
- color: {index: 1, r: 255, g: 255, b: 255} | ||
images: automatic | ||
|
||
converts: | ||
- name: yami | ||
palette: global_palette | ||
compress: zx0 | ||
transparent-color-index: 0 | ||
images: | ||
- yami.png | ||
- name: frame1 | ||
palette: global_palette | ||
compress: zx0 | ||
transparent-color-index: 0 | ||
images: | ||
- frame1.png | ||
- name: frame2 | ||
palette: global_palette | ||
compress: zx0 | ||
transparent-color-index: 0 | ||
images: | ||
- frame2.png | ||
- name: frame3 | ||
palette: global_palette | ||
compress: zx0 | ||
transparent-color-index: 0 | ||
images: | ||
- frame3.png | ||
- name: frame4 | ||
palette: global_palette | ||
compress: zx0 | ||
transparent-color-index: 0 | ||
images: | ||
- frame4.png | ||
- name: frame5 | ||
palette: global_palette | ||
compress: zx0 | ||
transparent-color-index: 0 | ||
images: | ||
- frame5.png | ||
|
||
outputs: | ||
- type: appvar | ||
name: vargci | ||
source-format: c | ||
include-file: vargci.h | ||
header-string: STRING | ||
palettes: | ||
- global_palette | ||
converts: | ||
- frame1 | ||
- frame2 | ||
- frame3 | ||
- frame4 | ||
- frame5 | ||
- yami |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
vargci.h | ||
vargci.c | ||
vargci.8xv |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.