2022-03-23 09:18:28 +01:00
|
|
|
# /
|
|
|
|
# /__ ___ ___ ____
|
|
|
|
# / / / / /__/ / / / / /
|
|
|
|
# / / /__/ /__ / / /__/
|
|
|
|
# /
|
|
|
|
# / version 0.9.0
|
|
|
|
#
|
|
|
|
# Copyright 2002 Daniel Nilsson
|
|
|
|
#
|
|
|
|
# This file is part of hpemu.
|
|
|
|
#
|
|
|
|
# Hpemu is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Hpemu is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with hpemu; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
2022-03-24 16:01:56 +01:00
|
|
|
BIN = hpemu.bin
|
2022-03-23 09:18:28 +01:00
|
|
|
OBJS = bus.o color.o cpu.o disasm.o display.o emulator.o gui.o hdw.o keyboard.o main.o opcodes.o pabout.o pcalc.o pdebug.o pfiles.o pmenu.o ports.o ram.o rom.o rpl.o timers.o
|
|
|
|
|
|
|
|
CC = gcc
|
|
|
|
CFLAGS = -Wall -Werror -O3 -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=missing-braces -Wno-error=incompatible-pointer-types
|
|
|
|
|
2022-03-24 16:01:56 +01:00
|
|
|
all: $(BIN)
|
2022-03-23 09:18:28 +01:00
|
|
|
|
2022-03-23 09:45:22 +01:00
|
|
|
clean-all: clean
|
2022-03-23 09:18:28 +01:00
|
|
|
-rm $(BIN)
|
|
|
|
|
2022-03-23 09:45:22 +01:00
|
|
|
clean:
|
|
|
|
-rm $(OBJS)
|
|
|
|
|
2022-03-23 09:18:28 +01:00
|
|
|
$(BIN): $(OBJS)
|
|
|
|
$(CC) -o $@ $+ -lSDL2 -lSDL2_ttf
|
|
|
|
|
2022-03-24 16:01:56 +01:00
|
|
|
%.o: hpemu/src/%.c
|
|
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
|
|
|
|
bus.o: hpemu/src/types.h hpemu/src/rom.h hpemu/src/ram.h hpemu/src/ports.h hpemu/src/hdw.h hpemu/src/bus.h
|
|
|
|
color.o: hpemu/src/color.h
|
|
|
|
cpu.o: hpemu/src/types.h hpemu/src/emulator.h hpemu/src/bus.h hpemu/src/opcodes.h hpemu/src/cpu.h
|
|
|
|
cpu.o: hpemu/src/types.h hpemu/src/opcodes.h hpemu/src/disasm.h
|
|
|
|
display.o: hpemu/src/types.h hpemu/src/bus.h
|
|
|
|
emulator.o: hpemu/src/types.h hpemu/src/cpu.h hpemu/src/bus.h hpemu/src/timers.h hpemu/src/display.h hpemu/src/gui.h hpemu/src/pdebug.h hpemu/src/emulator.h
|
|
|
|
gui.o: hpemu/src/color.h hpemu/src/pmenu.h hpemu/src/pcalc.h hpemu/src/pdebug.h hpemu/src/pfiles.h hpemu/src/pabout.h hpemu/src/gui.h
|
|
|
|
hdw.o: hpemu/src/types.h hpemu/src/bus.h hpemu/src/ports.h hpemu/src/timers.h hpemu/src/display.h hpemu/src/hdw.h
|
|
|
|
keyboard.o: hpemu/src/types.h hpemu/src/cpu.h hpemu/src/keyboard.h
|
|
|
|
main.o: hpemu/src/types.h hpemu/src/emulator.h hpemu/src/gui.h hpemu/src/color.h
|
|
|
|
opcodes.o: hpemu/src/types.h hpemu/src/cpu.h hpemu/src/bus.h hpemu/src/keyboard.h hpemu/src/opcodes.h hpemu/src/opinline.h
|
|
|
|
pabout.o: hpemu/src/color.h hpemu/src/gui.h hpemu/src/pabout.h
|
|
|
|
pcalc.o: hpemu/src/color.h hpemu/src/display.h hpemu/src/keyboard.h hpemu/src/gui.h hpemu/src/pcalc.h
|
|
|
|
pdebug.o: hpemu/src/types.h hpemu/src/emulator.h hpemu/src/cpu.h hpemu/src/bus.h hpemu/src/disasm.h hpemu/src/color.h hpemu/src/gui.h hpemu/src/pdebug.h
|
|
|
|
pfiles.o: hpemu/src/color.h hpemu/src/gui.h hpemu/src/rpl.h hpemu/src/pfiles.h
|
|
|
|
pmenu.o: hpemu/src/emulator.h hpemu/src/color.h hpemu/src/gui.h hpemu/src/pmenu.h
|
|
|
|
ports.o: hpemu/src/types.h hpemu/src/bus.h hpemu/src/ports.h
|
|
|
|
ram.o: hpemu/src/types.h hpemu/src/bus.h hpemu/src/ram.h
|
|
|
|
rom.o: hpemu/src/types.h hpemu/src/bus.h hpemu/src/rom.h
|
|
|
|
rpl.o: hpemu/src/types.h hpemu/src/bus.h hpemu/src/opinline.h hpemu/src/rpl.h
|
|
|
|
timers.o: hpemu/src/types.h hpemu/src/cpu.h hpemu/src/timers.h
|
2022-03-23 09:45:22 +01:00
|
|
|
|
2022-03-23 11:03:09 +01:00
|
|
|
|
2022-03-24 16:01:56 +01:00
|
|
|
js:
|
2022-03-24 16:40:45 +01:00
|
|
|
emcc -O3 hpemu/src/*.c \
|
|
|
|
-s USE_SDL=2 -s USE_SDL_IMAGE=2 -s SDL2_IMAGE_FORMATS='["png"]' -s USE_SDL_TTF=2 \
|
|
|
|
--preload-file hpemu/src/48face5.png \
|
|
|
|
--preload-file assets \
|
|
|
|
-o jsEmu48/hp48.html \
|
|
|
|
-sWASM=0 --memory-init-file 1
|
2022-03-23 09:45:22 +01:00
|
|
|
|
2022-03-24 16:01:56 +01:00
|
|
|
js-clean:
|
2022-03-24 16:40:45 +01:00
|
|
|
-rm jsEmu48/hp48.*
|
2022-03-23 09:18:28 +01:00
|
|
|
|
2022-03-24 16:01:56 +01:00
|
|
|
js-serve:
|
|
|
|
ruby -run -e httpd ./jsEmu48/ -p 9999
|