C64 emulation on STM32F429 Discovery board with builtin LCD and USB keyboard support (OTG). More info at davevw.com and/or github.com/davervw

Dependencies:   LCD_DISCO_F429ZI BSP_DISCO_F429ZI USBHOST

Revision:
9:a0c6747e539f
Parent:
4:8476be802690
--- a/emu6502.h	Wed Apr 15 05:34:25 2020 +0000
+++ b/emu6502.h	Thu Apr 16 06:38:02 2020 +0000
@@ -60,6 +60,7 @@
 extern void Execute(ushort addr, bool (*ExecutePatch)(void));
 extern void Push(int value);
 extern byte Pop(void);
+extern void PHP();
 extern void DisassembleLong(ushort addr, bool *p_conditional, byte *p_bytes, ushort *p_addr2, char *dis, int dis_size, char *line, int line_size);
 extern void DisassembleShort(ushort addr, bool *p_conditional, byte *p_bytes, ushort *p_addr2, char *dis, int dis_size);
 extern byte LO(ushort value);