Changed Formatting

This commit is contained in:
0xmac 2025-01-23 11:28:19 +01:00
parent a640c1a764
commit 8fba20844b

View File

@ -10,15 +10,14 @@
#define ROMLOC 0xC000 /* ROM Page Location */
#define BACKCOLOR sfBlack
#define FPS 60
#define SCREEN_WIDTH 786
#define SCREEN_WIDTH 768
#define SCREEN_HEIGHT 512
#define SDL_X_SIZE 786
#define SDL_Y_SIZE 786
#define SDL_X_SIZE 768
#define SDL_Y_SIZE 512
#define PREAMBLE "LS7 Emulator by Gabriel Weingardt.\nLicense: GPL v.3+\n\n"
#define HELP "Usage: LS7Emulator [options] file\n\n\
#define HELP "Usage: LS7Emulator [options] ... [file]\n\n\
Options: Type Default Desc\n\
--help Show this menu\n\
--help-keys Show emulator key functions\n\
@ -27,6 +26,8 @@ Options: Type Default Desc\n\
--singlestep Enable singlestepping with the 'F8' key\n\
--clocksteps [int] 1 Set the clock cycles cycled by a singlestep\n\
--snapshot [string] Import a CPU snapshot\n\
--fps [float] 30 Set the SDL FPS rate\n\
--enable-reload Reload the binary file when CPU is reset\n\
\n"
#define HELPKEYS "\
@ -39,6 +40,6 @@ F6 Scale--\n\
F7 Scale++\n\
F8 Single step CPU\n\
F9 Save CPU snapshot\n\
F10 Load previous snapshot\n\
F11 CPU NMI\n\
F12 CPU IRQ\n\n"
F10 Show Computer Memory Map\n\
F11 Send CPU NMI\n\
F12 Send CPU IRQ\n\n"