-
Notifications
You must be signed in to change notification settings - Fork 24
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
(WIP) Blitzblit meta-effect #78
base: master
Are you sure you want to change the base?
Conversation
@AltairQ Please fix Python formatting errors ;-) |
static __data_chip u_short bplbuf0[BB_BPR * BB_HEIGHT / 2]; | ||
static __data_chip u_short bplbuf1[BB_BPR * BB_HEIGHT / 2]; | ||
|
||
static BitmapT bitbuf0 = { |
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.
I guess you could use NewBitmap
function to achieve the same?
|
||
// nonblocking | ||
static void BLITZ_Load(u_short idx) { | ||
(void)idx; |
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.
What was your intent to put idx
into function parameters ?
custom->bltalwm = LastWordMask[1]; | ||
|
||
// SHIFT A MINTERM | ||
custom->bltcon0 = rorw((uint16_t)1, 4) | SRCA | SRCB | SRCC | DEST | (minterm_curr & 0xff); |
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.
Please use ASHIFT
and BSHIFT
macros.
No description provided.