Initial check-in

This commit is contained in:
David Schmenk 2019-04-21 06:53:32 -07:00
parent fed9e7f18e
commit 8d4cade6f0
336 changed files with 13748 additions and 0 deletions

121
Makefile Normal file
View File

@ -0,0 +1,121 @@
# Make File for Apple IIe Emulator for PalmOS 3.1
VERSION_MAJOR =0
VERSION_MINOR =7.3
CFLAGS = -Os
# -g -gstabs
# -DDEBUG
AFLAGS = -m68000 -pic -disp-size-default-16
# -D --gstabs
INCLUDES =
APPALM_OBJS = obj/appalm.o obj/6502.o obj/memio.o obj/video.o obj/vidclr.o obj/fonts7x8.o obj/fonts4x6.o
APPALM_BINS = obj/MBAR0bb8.bin obj/tAIB03e8.bin obj/tAIB03e9.bin obj/Talt08fc.bin obj/Talt09c4.bin obj/Talt0a28.bin obj/tFRM03e8.bin obj/tFRM044c.bin obj/tFRM04b0.bin obj/tver03e8.bin
APPALM_M68KEXECUTABLE = obj/appalm
APPALM = appalm.prc
A2MGR_OBJS = obj/a2mgr.o
A2MGR_BINS = obj/tAIB03e8.bin obj/tAIB03e9.bin obj/Talt238c.bin obj/Talt23f0.bin obj/tFRM2328.bin obj/tver03e8.bin
A2MGR_M68KEXECUTABLE = obj/a2mgr
A2MGR = a2mgr.prc
DSK2PDB = utils/dsk2pdb
BUILDPRC = build-prc
PILRC = pilrc -I src
GCC = m68k-palmos-gcc
AS = m68k-palmos-as
TAR = tar
ZIP = zip
all: $(APPALM) $(A2MGR) $(DSK2PDB)
clean: cleansrc cleanobj
cleansrc:
rm -f src/*.c~
rm -f src/*.h~
rm -f src/*.bak
rm -f src/tags
rm -f utils/dsk2pdb
rm -f tags
cleanobj:
rm -f obj/*.o
rm -f obj/*.s
rm -f obj/*.bin
rm -f obj/*.stamp
rm -f $(APPALM_M68KEXECUTABLE)
rm -f $(APPALM)
rm -f $(A2MGR_M68KEXECUTABLE)
rm -f $(A2MGR)
dist:
mkdir appalm-$(VERSION_MAJOR).$(VERSION_MINOR)
mkdir appalm-$(VERSION_MAJOR).$(VERSION_MINOR)/src
mkdir appalm-$(VERSION_MAJOR).$(VERSION_MINOR)/src/fonts4x6
mkdir appalm-$(VERSION_MAJOR).$(VERSION_MINOR)/src/fonts7x8
mkdir appalm-$(VERSION_MAJOR).$(VERSION_MINOR)/obj
mkdir appalm-$(VERSION_MAJOR).$(VERSION_MINOR)/utils
cp src/*.c appalm-$(VERSION_MAJOR).$(VERSION_MINOR)/src
cp src/*.h appalm-$(VERSION_MAJOR).$(VERSION_MINOR)/src
cp src/*.asm appalm-$(VERSION_MAJOR).$(VERSION_MINOR)/src
cp src/*.rcp appalm-$(VERSION_MAJOR).$(VERSION_MINOR)/src
cp src/fonts4x6/*.bmp appalm-$(VERSION_MAJOR).$(VERSION_MINOR)/src/fonts4x6
cp src/fonts7x8/*.bmp appalm-$(VERSION_MAJOR).$(VERSION_MINOR)/src/fonts7x8
cp utils/*.c appalm-$(VERSION_MAJOR).$(VERSION_MINOR)/utils
cp Makefile appalm-$(VERSION_MAJOR).$(VERSION_MINOR)
cp README appalm-$(VERSION_MAJOR).$(VERSION_MINOR)
$(TAR) czf appalm-$(VERSION_MAJOR).$(VERSION_MINOR).tar.gz appalm-$(VERSION_MAJOR).$(VERSION_MINOR)
$(ZIP) appalm-$(VERSION_MAJOR).$(VERSION_MINOR).zip appalm-$(VERSION_MAJOR).$(VERSION_MINOR)
rm -rf appalm-$(VERSION_MAJOR).$(VERSION_MINOR)
$(DSK2PDB): utils/dsk2pdb.c
gcc -o $(DSK2PDB) $<
$(APPALM): $(APPALM_M68KEXECUTABLE) obj/appalm.bin.stamp
$(BUILDPRC) $(APPALM) "Appalm ][" Aple2 $(APPALM_M68KEXECUTABLE) $(APPALM_BINS)
$(APPALM_M68KEXECUTABLE): $(APPALM_OBJS)
$(GCC) $(CFLAGS) -o $(APPALM_M68KEXECUTABLE) $(APPALM_OBJS)
obj/appalm.bin.stamp: src/appalm.rcp
$(PILRC) $^ obj
touch $@
obj/appalm.o: src/appalm.c src/Apple2.h src/6502.h src/memory.h
$(GCC) $(CFLAGS) -S $< -o $*.s
$(GCC) $(CFLAGS) -c $< -o $*.o
obj/6502.o: src/6502.asm src/6502.h
cpp -E $< > $*.s
$(AS) $(AFLAGS) $*.s -o $*.o
obj/memio.o: src/memio.c src/memory.h src/iou.h
$(GCC) $(CFLAGS) -S $< -o $*.s
$(GCC) $(CFLAGS) -c $< -o $*.o
obj/video.o: src/video.c src/memory.h src/iou.h
$(GCC) $(CFLAGS) -S $< -o $*.s
$(GCC) $(CFLAGS) -c $< -o $*.o
obj/vidclr.o: src/vidclr.asm
cpp -E $< > $*.s
$(AS) $(AFLAGS) $*.s -o $*.o
obj/fonts7x8.o: src/fonts7x8.c
$(GCC) $(CFLAGS) -c $< -o $*.o
obj/fonts4x6.o: src/fonts4x6.c
$(GCC) $(CFLAGS) -c $< -o $*.o
$(A2MGR): $(A2MGR_M68KEXECUTABLE) obj/a2mgr.bin.stamp
$(BUILDPRC) $(A2MGR) "A2 Manager" Disk2 $(A2MGR_M68KEXECUTABLE) $(A2MGR_BINS)
$(A2MGR_M68KEXECUTABLE): $(A2MGR_OBJS)
$(GCC) $(CFLAGS) -o $(A2MGR_M68KEXECUTABLE) $(A2MGR_OBJS)
obj/a2mgr.bin.stamp: src/a2mgr.rcp
$(PILRC) $^ obj
touch $@
obj/a2mgr.o: src/a2mgr.c src/a2mgr_rsc.h
$(GCC) $(CFLAGS) -c $< -o $*.o

BIN
icons/ApPalm_13x9_256.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

BIN
icons/ApPalm_15x9_256.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
icons/ApPalm_15x9_4grey.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

BIN
icons/ApPalm_15x9_B&W.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 470 B

BIN
icons/ApPalm_32x22_256.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 470 B

BIN
icons/ApPalm_32x22_B&W.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
icons/ApPalm_32x32_256.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 B

BIN
icons/ApPalm_32x32_B&W.bmp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

1960
palmapple/6502.c Normal file

File diff suppressed because it is too large Load Diff

9
palmapple/6502.h Normal file
View File

@ -0,0 +1,9 @@
#include <PalmOS.h>
#include <PalmCompatibility.h>
#include <SonyCLIE.h>
union PCStruct {
UInt8 Byte[2];
UInt16 PC;
};

137
palmapple/fonts.c Normal file
View File

@ -0,0 +1,137 @@
/*
* fonts.c
*/
/*
* apple fonts bitmap files
*/
#include "fonts/char00.bmp"
#include "fonts/char01.bmp"
#include "fonts/char02.bmp"
#include "fonts/char03.bmp"
#include "fonts/char04.bmp"
#include "fonts/char05.bmp"
#include "fonts/char06.bmp"
#include "fonts/char07.bmp"
#include "fonts/char08.bmp"
#include "fonts/char09.bmp"
#include "fonts/char0a.bmp"
#include "fonts/char0b.bmp"
#include "fonts/char0c.bmp"
#include "fonts/char0d.bmp"
#include "fonts/char0e.bmp"
#include "fonts/char0f.bmp"
#include "fonts/char10.bmp"
#include "fonts/char11.bmp"
#include "fonts/char12.bmp"
#include "fonts/char13.bmp"
#include "fonts/char14.bmp"
#include "fonts/char15.bmp"
#include "fonts/char16.bmp"
#include "fonts/char17.bmp"
#include "fonts/char18.bmp"
#include "fonts/char19.bmp"
#include "fonts/char1a.bmp"
#include "fonts/char1b.bmp"
#include "fonts/char1c.bmp"
#include "fonts/char1d.bmp"
#include "fonts/char1e.bmp"
#include "fonts/char1f.bmp"
#include "fonts/char20.bmp"
#include "fonts/char21.bmp"
#include "fonts/char22.bmp"
#include "fonts/char23.bmp"
#include "fonts/char24.bmp"
#include "fonts/char25.bmp"
#include "fonts/char26.bmp"
#include "fonts/char27.bmp"
#include "fonts/char28.bmp"
#include "fonts/char29.bmp"
#include "fonts/char2a.bmp"
#include "fonts/char2b.bmp"
#include "fonts/char2c.bmp"
#include "fonts/char2d.bmp"
#include "fonts/char2e.bmp"
#include "fonts/char2f.bmp"
#include "fonts/char30.bmp"
#include "fonts/char31.bmp"
#include "fonts/char32.bmp"
#include "fonts/char33.bmp"
#include "fonts/char34.bmp"
#include "fonts/char35.bmp"
#include "fonts/char36.bmp"
#include "fonts/char37.bmp"
#include "fonts/char38.bmp"
#include "fonts/char39.bmp"
#include "fonts/char3a.bmp"
#include "fonts/char3b.bmp"
#include "fonts/char3c.bmp"
#include "fonts/char3d.bmp"
#include "fonts/char3e.bmp"
#include "fonts/char3f.bmp"
#include "fonts/char40.bmp"
#include "fonts/char41.bmp"
#include "fonts/char42.bmp"
#include "fonts/char43.bmp"
#include "fonts/char44.bmp"
#include "fonts/char45.bmp"
#include "fonts/char46.bmp"
#include "fonts/char47.bmp"
#include "fonts/char48.bmp"
#include "fonts/char49.bmp"
#include "fonts/char4a.bmp"
#include "fonts/char4b.bmp"
#include "fonts/char4c.bmp"
#include "fonts/char4d.bmp"
#include "fonts/char4e.bmp"
#include "fonts/char4f.bmp"
#include "fonts/char50.bmp"
#include "fonts/char51.bmp"
#include "fonts/char52.bmp"
#include "fonts/char53.bmp"
#include "fonts/char54.bmp"
#include "fonts/char55.bmp"
#include "fonts/char56.bmp"
#include "fonts/char57.bmp"
#include "fonts/char58.bmp"
#include "fonts/char59.bmp"
#include "fonts/char5a.bmp"
#include "fonts/char5b.bmp"
#include "fonts/char5c.bmp"
#include "fonts/char5d.bmp"
#include "fonts/char5e.bmp"
#include "fonts/char5f.bmp"
/*
* bitmap index array
*/
#define MAX_CHAR_BITMAP 0x60
char *AppleFontBitmap[MAX_CHAR_BITMAP] = {
char00_bits, char01_bits, char02_bits, char03_bits,
char04_bits, char05_bits, char06_bits, char07_bits,
char08_bits, char09_bits, char0a_bits, char0b_bits,
char0c_bits, char0d_bits, char0e_bits, char0f_bits,
char10_bits, char11_bits, char12_bits, char13_bits,
char14_bits, char15_bits, char16_bits, char17_bits,
char18_bits, char19_bits, char1a_bits, char1b_bits,
char1c_bits, char1d_bits, char1e_bits, char1f_bits,
char20_bits, char21_bits, char22_bits, char23_bits,
char24_bits, char25_bits, char26_bits, char27_bits,
char28_bits, char29_bits, char2a_bits, char2b_bits,
char2c_bits, char2d_bits, char2e_bits, char2f_bits,
char30_bits, char31_bits, char32_bits, char33_bits,
char34_bits, char35_bits, char36_bits, char37_bits,
char38_bits, char39_bits, char3a_bits, char3b_bits,
char3c_bits, char3d_bits, char3e_bits, char3f_bits,
char40_bits, char41_bits, char42_bits, char43_bits,
char44_bits, char45_bits, char46_bits, char47_bits,
char48_bits, char49_bits, char4a_bits, char4b_bits,
char4c_bits, char4d_bits, char4e_bits, char4f_bits,
char50_bits, char51_bits, char52_bits, char53_bits,
char54_bits, char55_bits, char56_bits, char57_bits,
char58_bits, char59_bits, char5a_bits, char5b_bits,
char5c_bits, char5d_bits, char5e_bits, char5f_bits,
};

View File

@ -0,0 +1,3 @@
#define char00_width 7
#define char00_height 8
static char char00_bits[] = {0x3c, 0x44, 0x54, 0x5c, 0x58, 0x40, 0x3c, 0x0};

View File

@ -0,0 +1,3 @@
#define char01_width 7
#define char01_height 8
static char char01_bits[] = {0x10, 0x28, 0x44, 0x44, 0x7c, 0x44, 0x44, 0x0};

View File

@ -0,0 +1,3 @@
#define char02_width 7
#define char02_height 8
static char char02_bits[] = {0x78, 0x44, 0x44, 0x78, 0x44, 0x44, 0x78, 0x0};

View File

@ -0,0 +1,3 @@
#define char03_width 7
#define char03_height 8
static char char03_bits[] = {0x38, 0x44, 0x40, 0x40, 0x40, 0x44, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char04_width 7
#define char04_height 8
static char char04_bits[] = {0x78, 0x44, 0x44, 0x44, 0x44, 0x44, 0x78, 0x0};

View File

@ -0,0 +1,3 @@
#define char05_width 7
#define char05_height 8
static char char05_bits[] = {0x7c, 0x40, 0x40, 0x78, 0x40, 0x40, 0x7c, 0x0};

View File

@ -0,0 +1,3 @@
#define char06_width 7
#define char06_height 8
static char char06_bits[] = {0x7c, 0x40, 0x40, 0x78, 0x40, 0x40, 0x40, 0x0};

View File

@ -0,0 +1,3 @@
#define char07_width 7
#define char07_height 8
static char char07_bits[] = {0x3c, 0x40, 0x40, 0x40, 0x4c, 0x44, 0x3c, 0x0};

View File

@ -0,0 +1,3 @@
#define char08_width 7
#define char08_height 8
static char char08_bits[] = {0x44, 0x44, 0x44, 0x7c, 0x44, 0x44, 0x44, 0x0};

View File

@ -0,0 +1,3 @@
#define char09_width 7
#define char09_height 8
static char char09_bits[] = {0x38, 0x10, 0x10, 0x10, 0x10, 0x10, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char0a_width 7
#define char0a_height 8
static char char0a_bits[] = {0x4, 0x4, 0x4, 0x4, 0x4, 0x44, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char0b_width 7
#define char0b_height 8
static char char0b_bits[] = {0x44, 0x48, 0x50, 0x60, 0x50, 0x48, 0x44, 0x0};

View File

@ -0,0 +1,3 @@
#define char0c_width 7
#define char0c_height 8
static char char0c_bits[] = {0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x7c, 0x0};

View File

@ -0,0 +1,3 @@
#define char0d_width 7
#define char0d_height 8
static char char0d_bits[] = {0x44, 0x6c, 0x54, 0x54, 0x44, 0x44, 0x44, 0x0};

View File

@ -0,0 +1,3 @@
#define char0e_width 7
#define char0e_height 8
static char char0e_bits[] = {0x44, 0x44, 0x64, 0x54, 0x4c, 0x44, 0x44, 0x0};

View File

@ -0,0 +1,3 @@
#define char0f_width 7
#define char0f_height 8
static char char0f_bits[] = {0x38, 0x44, 0x44, 0x44, 0x44, 0x44, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char10_width 7
#define char10_height 8
static char char10_bits[] = {0x78, 0x44, 0x44, 0x78, 0x40, 0x40, 0x40, 0x0};

View File

@ -0,0 +1,3 @@
#define char11_width 7
#define char11_height 8
static char char11_bits[] = {0x38, 0x44, 0x44, 0x44, 0x54, 0x48, 0x34, 0x0};

View File

@ -0,0 +1,3 @@
#define char12_width 7
#define char12_height 8
static char char12_bits[] = {0x78, 0x44, 0x44, 0x78, 0x50, 0x48, 0x44, 0x0};

View File

@ -0,0 +1,3 @@
#define char13_width 7
#define char13_height 8
static char char13_bits[] = {0x38, 0x44, 0x40, 0x38, 0x4, 0x44, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char14_width 7
#define char14_height 8
static char char14_bits[] = {0x7c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x0};

View File

@ -0,0 +1,3 @@
#define char15_width 7
#define char15_height 8
static char char15_bits[] = {0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char16_width 7
#define char16_height 8
static char char16_bits[] = {0x44, 0x44, 0x44, 0x44, 0x44, 0x28, 0x10, 0x0};

View File

@ -0,0 +1,3 @@
#define char17_width 7
#define char17_height 8
static char char17_bits[] = {0x44, 0x44, 0x44, 0x54, 0x54, 0x6c, 0x44, 0x0};

View File

@ -0,0 +1,3 @@
#define char18_width 7
#define char18_height 8
static char char18_bits[] = {0x44, 0x44, 0x28, 0x10, 0x28, 0x44, 0x44, 0x0};

View File

@ -0,0 +1,3 @@
#define char19_width 7
#define char19_height 8
static char char19_bits[] = {0x44, 0x44, 0x28, 0x10, 0x10, 0x10, 0x10, 0x0};

View File

@ -0,0 +1,3 @@
#define char1a_width 7
#define char1a_height 8
static char char1a_bits[] = {0x7c, 0x4, 0x8, 0x10, 0x20, 0x40, 0x7c, 0x0};

View File

@ -0,0 +1,3 @@
#define char1b_width 7
#define char1b_height 8
static char char1b_bits[] = {0x7c, 0x60, 0x60, 0x60, 0x60, 0x60, 0x7c, 0x0};

View File

@ -0,0 +1,3 @@
#define char1c_width 7
#define char1c_height 8
static char char1c_bits[] = {0x0, 0x40, 0x20, 0x10, 0x8, 0x4, 0x0, 0x0};

View File

@ -0,0 +1,3 @@
#define char1d_width 7
#define char1d_height 8
static char char1d_bits[] = {0x7c, 0xc, 0xc, 0xc, 0xc, 0xc, 0x7c, 0x0};

View File

@ -0,0 +1,3 @@
#define char1e_width 7
#define char1e_height 8
static char char1e_bits[] = {0x0, 0x0, 0x10, 0x28, 0x44, 0x0, 0x0, 0x0};

View File

@ -0,0 +1,3 @@
#define char1f_width 7
#define char1f_height 8
static char char1f_bits[] = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe};

View File

@ -0,0 +1,3 @@
#define char20_width 7
#define char20_height 8
static char char20_bits[] = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0};

View File

@ -0,0 +1,3 @@
#define char21_width 7
#define char21_height 8
static char char21_bits[] = {0x10, 0x10, 0x10, 0x10, 0x10, 0x0, 0x10, 0x0};

View File

@ -0,0 +1,3 @@
#define char22_width 7
#define char22_height 8
static char char22_bits[] = {0x28, 0x28, 0x28, 0x0, 0x0, 0x0, 0x0, 0x0};

View File

@ -0,0 +1,3 @@
#define char23_width 7
#define char23_height 8
static char char23_bits[] = {0x28, 0x28, 0xfe, 0x28, 0xfe, 0x28, 0x28, 0x0};

View File

@ -0,0 +1,3 @@
#define char24_width 7
#define char24_height 8
static char char24_bits[] = {0x10, 0x3c, 0x50, 0x38, 0x14, 0x78, 0x10, 0x0};

View File

@ -0,0 +1,3 @@
#define char25_width 7
#define char25_height 8
static char char25_bits[] = {0x60, 0x64, 0x8, 0x10, 0x20, 0x4c, 0xc, 0x0};

View File

@ -0,0 +1,3 @@
#define char26_width 7
#define char26_height 8
static char char26_bits[] = {0x20, 0x50, 0x50, 0x20, 0x54, 0x48, 0x34, 0x0};

View File

@ -0,0 +1,3 @@
#define char27_width 7
#define char27_height 8
static char char27_bits[] = {0x10, 0x10, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0};

View File

@ -0,0 +1,3 @@
#define char28_width 7
#define char28_height 8
static char char28_bits[] = {0x10, 0x20, 0x40, 0x40, 0x40, 0x20, 0x10, 0x0};

View File

@ -0,0 +1,3 @@
#define char29_width 7
#define char29_height 8
static char char29_bits[] = {0x10, 0x8, 0x4, 0x4, 0x4, 0x8, 0x10, 0x0};

View File

@ -0,0 +1,3 @@
#define char2a_width 7
#define char2a_height 8
static char char2a_bits[] = {0x10, 0x54, 0x38, 0x10, 0x38, 0x54, 0x10, 0x0};

View File

@ -0,0 +1,3 @@
#define char2b_width 7
#define char2b_height 8
static char char2b_bits[] = {0x0, 0x10, 0x10, 0x7c, 0x10, 0x10, 0x0, 0x0};

View File

@ -0,0 +1,3 @@
#define char2c_width 7
#define char2c_height 8
static char char2c_bits[] = {0x0, 0x0, 0x0, 0x0, 0x10, 0x10, 0x20, 0x0};

View File

@ -0,0 +1,3 @@
#define char2d_width 7
#define char2d_height 8
static char char2d_bits[] = {0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x0, 0x0};

View File

@ -0,0 +1,3 @@
#define char2e_width 7
#define char2e_height 8
static char char2e_bits[] = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10, 0x0};

View File

@ -0,0 +1,3 @@
#define char2f_width 7
#define char2f_height 8
static char char2f_bits[] = {0x0, 0x4, 0x8, 0x10, 0x20, 0x40, 0x0, 0x0};

View File

@ -0,0 +1,3 @@
#define char30_width 7
#define char30_height 8
static char char30_bits[] = {0x38, 0x44, 0x4c, 0x54, 0x64, 0x44, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char31_width 7
#define char31_height 8
static char char31_bits[] = {0x10, 0x30, 0x10, 0x10, 0x10, 0x10, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char32_width 7
#define char32_height 8
static char char32_bits[] = {0x38, 0x44, 0x4, 0x18, 0x20, 0x40, 0x7c, 0x0};

View File

@ -0,0 +1,3 @@
#define char33_width 7
#define char33_height 8
static char char33_bits[] = {0x7c, 0x4, 0x8, 0x18, 0x4, 0x44, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char34_width 7
#define char34_height 8
static char char34_bits[] = {0x8, 0x18, 0x28, 0x48, 0x7c, 0x8, 0x8, 0x0};

View File

@ -0,0 +1,3 @@
#define char35_width 7
#define char35_height 8
static char char35_bits[] = {0x7c, 0x40, 0x78, 0x4, 0x4, 0x44, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char36_width 7
#define char36_height 8
static char char36_bits[] = {0x1c, 0x20, 0x40, 0x78, 0x44, 0x44, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char37_width 7
#define char37_height 8
static char char37_bits[] = {0x7c, 0x4, 0x8, 0x10, 0x20, 0x20, 0x20, 0x0};

View File

@ -0,0 +1,3 @@
#define char38_width 7
#define char38_height 8
static char char38_bits[] = {0x38, 0x44, 0x44, 0x38, 0x44, 0x44, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char39_width 7
#define char39_height 8
static char char39_bits[] = {0x38, 0x44, 0x44, 0x3c, 0x4, 0x8, 0x70, 0x0};

View File

@ -0,0 +1,3 @@
#define char3a_width 7
#define char3a_height 8
static char char3a_bits[] = {0x0, 0x0, 0x10, 0x0, 0x10, 0x0, 0x0, 0x0};

View File

@ -0,0 +1,3 @@
#define char3b_width 7
#define char3b_height 8
static char char3b_bits[] = {0x0, 0x0, 0x10, 0x0, 0x10, 0x10, 0x20, 0x0};

View File

@ -0,0 +1,3 @@
#define char3c_width 7
#define char3c_height 8
static char char3c_bits[] = {0x8, 0x10, 0x20, 0x40, 0x20, 0x10, 0x8, 0x0};

View File

@ -0,0 +1,3 @@
#define char3d_width 7
#define char3d_height 8
static char char3d_bits[] = {0x0, 0x0, 0x7c, 0x0, 0x7c, 0x0, 0x0, 0x0};

View File

@ -0,0 +1,3 @@
#define char3e_width 7
#define char3e_height 8
static char char3e_bits[] = {0x20, 0x10, 0x8, 0x4, 0x8, 0x10, 0x20, 0x0};

View File

@ -0,0 +1,3 @@
#define char3f_width 7
#define char3f_height 8
static char char3f_bits[] = {0x38, 0x44, 0x8, 0x10, 0x10, 0x0, 0x10, 0x0};

View File

@ -0,0 +1,3 @@
#define char40_width 7
#define char40_height 8
static char char40_bits[] = {0x20, 0x10, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0};

View File

@ -0,0 +1,3 @@
#define char41_width 7
#define char41_height 8
static char char41_bits[] = {0x0, 0x0, 0x38, 0x4, 0x3c, 0x44, 0x3c, 0x0};

View File

@ -0,0 +1,3 @@
#define char42_width 7
#define char42_height 8
static char char42_bits[] = {0x40, 0x40, 0x78, 0x44, 0x44, 0x44, 0x78, 0x0};

View File

@ -0,0 +1,3 @@
#define char43_width 7
#define char43_height 8
static char char43_bits[] = {0x0, 0x0, 0x3c, 0x40, 0x40, 0x40, 0x3c, 0x0};

View File

@ -0,0 +1,3 @@
#define char44_width 7
#define char44_height 8
static char char44_bits[] = {0x4, 0x4, 0x3c, 0x44, 0x44, 0x44, 0x3c, 0x0};

View File

@ -0,0 +1,3 @@
#define char45_width 7
#define char45_height 8
static char char45_bits[] = {0x0, 0x0, 0x38, 0x44, 0x7c, 0x40, 0x3c, 0x0};

View File

@ -0,0 +1,3 @@
#define char46_width 7
#define char46_height 8
static char char46_bits[] = {0x18, 0x24, 0x20, 0x78, 0x20, 0x20, 0x20, 0x0};

View File

@ -0,0 +1,3 @@
#define char47_width 7
#define char47_height 8
static char char47_bits[] = {0x0, 0x0, 0x38, 0x44, 0x44, 0x3c, 0x4, 0x38};

View File

@ -0,0 +1,3 @@
#define char48_width 7
#define char48_height 8
static char char48_bits[] = {0x40, 0x40, 0x78, 0x44, 0x44, 0x44, 0x44, 0x0};

View File

@ -0,0 +1,3 @@
#define char49_width 7
#define char49_height 8
static char char49_bits[] = {0x10, 0x0, 0x30, 0x10, 0x10, 0x10, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char4a_width 7
#define char4a_height 8
static char char4a_bits[] = {0x8, 0x0, 0x38, 0x8, 0x8, 0x8, 0x48, 0x30};

View File

@ -0,0 +1,3 @@
#define char4b_width 7
#define char4b_height 8
static char char4b_bits[] = {0x40, 0x40, 0x44, 0x48, 0x70, 0x48, 0x44, 0x0};

View File

@ -0,0 +1,3 @@
#define char4c_width 7
#define char4c_height 8
static char char4c_bits[] = {0x30, 0x10, 0x10, 0x10, 0x10, 0x10, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char4d_width 7
#define char4d_height 8
static char char4d_bits[] = {0x0, 0x0, 0x6c, 0x54, 0x54, 0x54, 0x44, 0x0};

View File

@ -0,0 +1,3 @@
#define char4e_width 7
#define char4e_height 8
static char char4e_bits[] = {0x0, 0x0, 0x78, 0x44, 0x44, 0x44, 0x44, 0x0};

View File

@ -0,0 +1,3 @@
#define char4f_width 7
#define char4f_height 8
static char char4f_bits[] = {0x0, 0x0, 0x38, 0x44, 0x44, 0x44, 0x38, 0x0};

View File

@ -0,0 +1,3 @@
#define char50_width 7
#define char50_height 8
static char char50_bits[] = {0x0, 0x0, 0x78, 0x44, 0x44, 0x78, 0x40, 0x40};

View File

@ -0,0 +1,3 @@
#define char51_width 7
#define char51_height 8
static char char51_bits[] = {0x0, 0x0, 0x3c, 0x44, 0x44, 0x3c, 0x4, 0x4};

View File

@ -0,0 +1,3 @@
#define char52_width 7
#define char52_height 8
static char char52_bits[] = {0x0, 0x0, 0x5c, 0x60, 0x40, 0x40, 0x40, 0x0};

Some files were not shown because too many files have changed in this diff Show More