diff options
-rw-r--r-- | README | 10 | ||||
-rw-r--r-- | menu.s68 | 2 | ||||
-rw-r--r-- | nuklear_ui/blastem_nuklear.c | 4 |
3 files changed, 14 insertions, 2 deletions
@@ -500,7 +500,15 @@ Titan - Titan has created what are without a doubt the most impressive demos on the Megadrive. Additionally, I am very grateful for the documentation provided by Kabuto and the assistance of Kabuto, Sik and Jorge in getting Overdrive 2 - to run properly in BlastEm. + to run properly in BlastEm. + +flamewing - flamewing created a very handy exhaustive test ROM for 68K + BCD instructions and documented the proper behavior for + certain BCD edge cases + +r57shell - r57shell created a test ROM for 68K instruction sizes that + was invaluable in fixing the remaining bugs in my 68K instruction + decoder I'd also like to thank the following people who have performed compatibility testing or submitted helpful bug reports @@ -1269,6 +1269,8 @@ about_text: dc.b "Bart Trzynadlowski: Documentation", 0 dc.b "KanedaFR: Hosting the best Sega forum", 0 dc.b "Titan: Awesome demos and documentation", 0 + dc.b "flamewing: BCD info and test ROM", 0 + dc.b "r57shell: Opcode size test ROM", 0 dc.b "micky: Testing", 0 dc.b "Sasha: Testing", 0 dc.b "lol-frank: Testing", 0 diff --git a/nuklear_ui/blastem_nuklear.c b/nuklear_ui/blastem_nuklear.c index 2e73a63..29dd79c 100644 --- a/nuklear_ui/blastem_nuklear.c +++ b/nuklear_ui/blastem_nuklear.c @@ -168,12 +168,14 @@ void view_about(struct nk_context *context) }; const uint32_t NUM_LINES = sizeof(lines)/sizeof(*lines); const char *thanks[] = { - "Nemesis: Documentatino and test ROMs", + "Nemesis: Documentation and test ROMs", "Charles MacDonald: Documentation", "Eke-Eke: Documentation", "Bart Trzynadlowski: Documentation", "KanedaFR: Hosting the best Sega forum", "Titan: Awesome demos and documentation", + "flamewing: BCD info and test ROM", + "r57shell: Opcode size test ROM", "micky: Testing", "Sasha: Testing", "lol-frank: Testing", |