We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Can the extension automatically work out math parts and also bit shifting. For example:
move.w #sprheight<<6,d2 ; #sprheight*64 = 32*64 = 2048
if I hover on this it tells me that sprheight is 32. Can it tell me that sprheight evaluates to 2048? even if it means highlighting it?
and blitsize equ (BOBHEIGHT*SCREEN_DEPTH*64)+BOBWIDTH/16
blitsize equ (BOBHEIGHT*SCREEN_DEPTH*64)+BOBWIDTH/16
If I was to highlight part of the equation (so I highlight BOBWIDTH/16) can it give me the evaluation (in this case 2 as BOBWIDTH = 32)
The text was updated successfully, but these errors were encountered:
You have the result in the status bar: With
COPPERLIST_SIZE = 1000<<2 ;Size of the copperlist
Result 4002. Maybe with a hover it would be better, I agree, I don't know how it will interact with the rest of the hover options. I'll look at it.
Sorry, something went wrong.
Well I never :D
Being an added part of the existing hover would be great
Yes it's one of the firsts features... deserves to be changed.
No branches or pull requests
Can the extension automatically work out math parts and also bit shifting. For example:
move.w #sprheight<<6,d2 ; #sprheight*64 = 32*64 = 2048
if I hover on this it tells me that sprheight is 32. Can it tell me that sprheight evaluates to 2048? even if it means highlighting it?
and
blitsize equ (BOBHEIGHT*SCREEN_DEPTH*64)+BOBWIDTH/16
If I was to highlight part of the equation (so I highlight BOBWIDTH/16) can it give me the evaluation (in this case 2 as BOBWIDTH = 32)
The text was updated successfully, but these errors were encountered: