-
Notifications
You must be signed in to change notification settings - Fork 2.2k
sinclair/tsconf.cpp: Added FPGA 100K variant; implemented Copper for it. #14008
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
return; | ||
break; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't return and break at same time going to throw a compiler error?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Neither clang nor gcc failed the compilation. I was thinking having break everywhere is more consistent.
src/mame/sinclair/tsconf_copper.cpp
Outdated
case 0b1110: // CALL | ||
m_ret_pc = m_pc + 1; | ||
m_pc = data & 0xff; | ||
break; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This break;
lost a tab child
src/mame/sinclair/tsconf.h
Outdated
@@ -173,6 +177,7 @@ class tsconf_state : public spectrum_128_state | |||
void draw_sprites(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); | |||
void tsconf_update_video_mode(); | |||
void copy_tiles_to_raw(const u8 *tiles_src, u8 *raw_target); | |||
attotime cooper_until_pos_r(u16 pos); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This became Bob Cooper somehow 🎵
No description provided.