-
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
0 parents
commit b705a3b
Showing
13 changed files
with
1,430 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
bin/ | ||
.vscode/ | ||
debug.bat | ||
todo.md |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2023 QwertyR0 | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,6 @@ | ||
# CellBoy | ||
A cell machine remake for Gameboy written in C using gbdk. | ||
Original Cell machine by Sam Hogan. | ||
|
||
# For more info: | ||
https://discord.gg/3TGmvpeNGa |
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,4 @@ | ||
c:\gbdk\bin\lcc -Wa-l -Wf-ba0 -c -o bin/saveState.o src/saveState.c | ||
c:\gbdk\bin\lcc -Wa-l -c -o bin/main.o src/main.c | ||
c:\gbdk\bin\lcc -Wl-yt3 -Wl-yo4 -Wl-ya4 -o bin/main.gb bin/main.o bin/saveState.o | ||
REM C:\Users\USER\Desktop\projects\gameboy\bgb\bgb.exe bin/main.gb |
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,4 @@ | ||
c:\gbdk\bin\lcc -Wa-l -Wl-m -Wl-j -DUSE_SFR_FOR_REG -c -o bin/main.o src/main.c | ||
c:\gbdk\bin\lcc -Wa-l -Wl-m -Wl-j -DUSE_SFR_FOR_REG -o bin/main.gb bin/main.o | ||
REM C:\Users\USER\Desktop\projects\gameboy\bgb\bgb.exe bin/main.gb | ||
REM use if you don't want saves |
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,82 @@ | ||
/* | ||
CELLS.C | ||
Tile Source File. | ||
Info: | ||
Form : All tiles as one unit. | ||
Format : Gameboy 4 color. | ||
Compression : None. | ||
Counter : None. | ||
Tile size : 8 x 8 | ||
Tiles : 0 to 25 | ||
Palette colors : None. | ||
SGB Palette : None. | ||
CGB Palette : None. | ||
Convert to metatiles : No. | ||
This file was generated by GBTD v2.2 | ||
*/ | ||
|
||
/* Start of tile array. */ | ||
unsigned char Cells[] = | ||
{ | ||
0x7E,0x7E,0xB1,0xA1,0xB9,0xB1,0xBD,0xB9, | ||
0xBD,0xB9,0xB9,0xB1,0xB1,0xA1,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0xFF,0xFF,0xFF,0xBD, | ||
0xBD,0x99,0x99,0x81,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0xB1,0xA1,0xB9,0xB1,0xBD,0xB9, | ||
0xBD,0xB9,0xB9,0xB1,0xB1,0xA1,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0x99,0x81,0xBD,0x99, | ||
0xFF,0xBD,0xFF,0xFF,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0x89,0x89,0xBF,0xFD, | ||
0xBF,0xFD,0x89,0x89,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x99,0x99,0x99,0x99,0x99, | ||
0xBD,0xBD,0x99,0x99,0x99,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0x91,0x91,0xFD,0xBF, | ||
0xFD,0xBF,0x91,0x91,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x99,0x81,0x99,0x99,0xBD,0xBD, | ||
0x99,0x99,0x99,0x99,0x81,0x99,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0x81,0xBD,0x81,0xA5, | ||
0x81,0xAF,0x81,0xA5,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0x81,0xBD,0x81,0x85, | ||
0x81,0x95,0x81,0xBD,0x81,0x91,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0x81,0xA5,0x81,0xF5, | ||
0x81,0xA5,0x81,0xBD,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x89,0x81,0xBD,0x81,0xA9, | ||
0x81,0xA1,0x81,0xBD,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0x81,0xBD,0x81,0xA5, | ||
0x81,0xF5,0x81,0xA5,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x91,0x81,0xBD,0x81,0x95, | ||
0x81,0x85,0x81,0xBD,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0x81,0xA5,0x81,0xAF, | ||
0x81,0xA5,0x81,0xBD,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0x81,0xBD,0x81,0xA1, | ||
0x81,0xA9,0x81,0xBD,0x81,0x89,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0xBD,0xBD,0xBD,0x81, | ||
0x81,0x81,0xBD,0xBD,0xBD,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0xBD,0xBD,0x81,0x81, | ||
0x81,0x81,0xBD,0xBD,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0xA5,0xA5,0xA5,0xA5, | ||
0xA5,0xA5,0xA5,0xA5,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0xA5,0xA5,0xFF,0xFF,0xA5,0xA5, | ||
0xA5,0xA5,0xFF,0xFF,0xA5,0xA5,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0x99,0xE7,0xC3,0xBD, | ||
0x81,0xBD,0x81,0xBD,0x81,0x99,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0xFF,0x81,0xFF,0x81,0xFF, | ||
0x81,0xFF,0x81,0xFF,0x81,0xFF,0x7E,0x7E, | ||
0x7E,0x7E,0xE7,0x81,0x99,0xA5,0x81,0x81, | ||
0x81,0x99,0x81,0xA5,0x81,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x83,0x81,0x83,0xA5,0x85,0x91, | ||
0x85,0x91,0x83,0xA5,0x83,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0x81,0x81,0x81,0xA5,0x81,0x99, | ||
0x81,0x81,0x99,0xA5,0xE7,0x81,0x7E,0x7E, | ||
0x7E,0x7E,0xC1,0x81,0xC1,0xA5,0xA1,0x89, | ||
0xA1,0x89,0xC1,0xA5,0xC1,0x81,0x7E,0x7E | ||
}; | ||
|
||
/* End of CELLS.C */ |
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,32 @@ | ||
/* | ||
SELECT.C | ||
Tile Source File. | ||
Info: | ||
Form : All tiles as one unit. | ||
Format : Gameboy 4 color. | ||
Compression : None. | ||
Counter : None. | ||
Tile size : 8 x 8 | ||
Tiles : 0 to 0 | ||
Palette colors : None. | ||
SGB Palette : None. | ||
CGB Palette : None. | ||
Convert to metatiles : No. | ||
This file was generated by GBTD v2.2 | ||
*/ | ||
|
||
/* Start of tile array. */ | ||
unsigned char selectSprite[] = | ||
{ | ||
0x00,0xFF,0x66,0x99,0x42,0xBD,0x00,0xFF, | ||
0x00,0xFF,0x42,0xBD,0x66,0x99,0x00,0xFF | ||
}; | ||
|
||
/* End of SELECT.C */ |
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,76 @@ | ||
/* | ||
Generated By GameBoyPngConverter | ||
Tiles data | ||
Number of Tiles : 65 | ||
*/ | ||
|
||
const unsigned char settings_data[] = { | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x3C,0xFF,0x66,0xFF,0x60,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x7E,0xFF,0x60,0xFF,0x7C,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x60,0xFF,0x60,0xFF,0x60,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x7C,0xFF,0x66,0xFF,0x7C,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x3C,0xFF,0x66,0xFF,0x66,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x66,0xFF,0x66,0xFF,0x3C,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x03,0xFF,0x06,0xFF,0x03,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0xC7,0xFF,0x06,0xFF,0xC7,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0xE7,0xFF,0x01,0xFF,0xC1,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0xE7,0xFF,0x81,0xFF,0x81,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0xE3,0xFF,0x81,0xFF,0x81,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0xC4,0xFF,0x86,0xFF,0x87,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x63,0xFF,0x66,0xFF,0x66,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0xC3,0xFF,0x66,0xFF,0x03,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0xC0,0xFF,0x00,0xFF,0xC0,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x46,0xFF,0x6E,0xFF,0x7E,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x46,0xFF,0x66,0xFF,0x76,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x46,0xFF,0x46,0xFF,0x46,0xFF, | ||
0x60,0xFF,0x66,0xFF,0x3C,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x60,0xFF,0x60,0xFF,0x7E,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x66,0xFF,0x66,0xFF,0x7C,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x66,0xFF,0x66,0xFF,0x3C,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x18,0xFF,0x18,0xFF,0x18,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x00,0xFF,0x04,0xFF,0x03,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0xE6,0xFF,0xE6,0xFF,0xC7,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x01,0xFF,0x01,0xFF,0xE1,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x81,0xFF,0x81,0xFF,0x81,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x81,0xFF,0x81,0xFF,0x83,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x85,0xFF,0x84,0xFF,0xC4,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0xE6,0xFF,0xE6,0xFF,0x63,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0xE0,0xFF,0x64,0xFF,0xE3,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0xE0,0xFF,0xE0,0xFF,0xC0,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x56,0xFF,0x46,0xFF,0x46,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x5E,0xFF,0x4E,0xFF,0x46,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x46,0xFF,0x4E,0xFF,0x3C,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x7F,0xFF,0xFF,0xFF,0xFF,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0xFE,0xFF,0xFF,0xFF,0xFF,0xFF, | ||
0xFF,0xFF,0xF0,0xFF,0xF0,0xFF,0xF0,0xFF,0xF0,0xFF,0xF0,0xFF,0xF0,0xFF,0xF0,0xFF, | ||
0xFF,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0xFF,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF, | ||
0xF0,0xFF,0xF0,0xFF,0xF0,0xFF,0xF0,0xFF,0xF0,0xFF,0xF0,0xFF,0xF0,0xFF,0xF0,0xFF, | ||
0x00,0xFF,0x7E,0xFF,0x18,0xFF,0x18,0xFF,0x18,0xFF,0x18,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x00,0xFF,0x78,0xFF,0x31,0xFF,0x31,0xFF,0x31,0xFF,0x78,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x00,0xFF,0xF3,0xFF,0x9B,0xFF,0x83,0xFF,0x9B,0xFF,0xF3,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x00,0xFF,0x60,0xFF,0x40,0xFF,0xC0,0xFF,0x40,0xFF,0x60,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x00,0xFF,0xF0,0xFF,0xD9,0xFF,0xF1,0xFF,0xE1,0xFF,0xD9,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x00,0xFF,0xE3,0xFF,0x30,0xFF,0xF0,0xFF,0x30,0xFF,0x30,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x00,0xFF,0xF7,0xFF,0xC6,0xFF,0xC7,0xFF,0xC6,0xFF,0xC7,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x00,0xFF,0xE0,0xFF,0x06,0xFF,0xC0,0xFF,0x00,0xFF,0xE6,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF,0x0F,0xFF, | ||
0x0E,0xFF,0x18,0xFF,0x0E,0xFF,0x13,0xFF,0x0E,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x1C,0xFF,0x26,0xFF,0x3E,0xFF,0x26,0xFF,0x26,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x4C,0xFF,0x4C,0xFF,0x4C,0xFF,0x38,0xFF,0x10,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0xFC,0xFF,0xC0,0xFF,0xF8,0xFF,0xC0,0xFF,0xFC,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x01,0xFF,0x01,0xFF,0x01,0xFF,0x01,0xFF,0x01,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0xE3,0xFF,0xB3,0xFF,0xE3,0xFF,0xC3,0xFF,0xB3,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0xF3,0xFF,0x06,0xFF,0xE3,0xFF,0x04,0xFF,0xF3,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x8F,0xFF,0x0C,0xFF,0x8F,0xFF,0xCC,0xFF,0x8F,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0xDF,0xFF,0x06,0xFF,0x86,0xFF,0x06,0xFF,0xC6,0xFF, | ||
0x00,0xFF,0x00,0xFF,0x00,0xFF,0x80,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x7F,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF, | ||
0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFE,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF,0x00,0xFF | ||
|
||
}; |
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,11 @@ | ||
/* | ||
Generated By GameBoyPngConverter | ||
Tiles map | ||
TileMap Size : 20 x 18 | ||
*/ | ||
|
||
const unsigned char settings_map[] = { | ||
0x00,0x01,0x02,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,0x0E,0x0F,0x01,0x10,0x11,0x12,0x13,0x13,0x13,0x14,0x15,0x16,0x17,0x18,0x19,0x1A,0x1B,0x1C,0x1D,0x1E,0x1F,0x20,0x13,0x21,0x22,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x24,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x25,0x26,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x27,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x28,0x29,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x2A,0x23,0x2B,0x2C,0x2D,0x2E,0x2F,0x30,0x31,0x32,0x23,0x33,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x2A,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x33,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x2A,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x33,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x2A,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x33,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x2A,0x23,0x23,0x23,0x34,0x35,0x36,0x37,0x23,0x23,0x23,0x33,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x2A,0x23,0x23,0x38,0x39,0x3A,0x3B,0x3C,0x3D,0x23,0x23,0x33,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x2A,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x33,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x3E,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x3F,0x40,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23,0x23 | ||
}; |
Oops, something went wrong.