-
Notifications
You must be signed in to change notification settings - Fork 507
I worked on add 16Bit IN/OUT #421
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: main
Are you sure you want to change the base?
Conversation
…s and Splits arent working yet
damn i didnt know you were an editor i was reviewing changes |
what i didn't close this i was trying to merge new updates and accedentaly pushed that pr here so i closed that not this one |
}catch (Exception e){ | ||
Debug.Log(e); | ||
if (stringFormat is DataDisplayMode.Binary){ | ||
uintVal =(uint) ((ulong) (Convert.ToInt64(displayString, 2))& 0b11111111111111111111111111111111); |
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.
could you either replace this with 0xFFFFFFFF or a constant like UINT32_MAX
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 changed it to 0xFFFFFFFF
The only issue is special charachters are just blank plus 128-255 is also blank
Works with Ascii 8bit
I added 16 Bit In/Out as it makes more sense for the ROM256x16 to be a 16Bit out instead of 2 8Bit or it could be a choice for someone for which one to use. I also added a RGBLED but it is very large as there are 8Bit Inputs so there is 0 to 255 range for each RED, GREEN, and BLUE.