mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-08-18 08:41:20 +02:00
Update to v101r02 release.
byuu says: Changelog: - Emulator: use `(uintmax)-1 >> 1` for the units of time - MD: implemented 13 new 68K instructions (basically all of the remaining easy ones); 21 remain - nall: replaced `(u)intmax_t` (64-bit) with *actual* `(u)intmax` type (128-bit where available) - this extends to everything: atoi, string, etc. You can even print 128-bit variables if you like 22,552 opcodes still don't exist in the 68K map. Looking like quite a few entries will be blank once I finish.
This commit is contained in:
@@ -92,7 +92,7 @@ auto slice(string_view self, int offset, int length) -> string {
|
||||
return result;
|
||||
}
|
||||
|
||||
auto fromInteger(char* result, intmax_t value) -> char* {
|
||||
auto fromInteger(char* result, intmax value) -> char* {
|
||||
bool negative = value < 0;
|
||||
if(negative) value = -value;
|
||||
|
||||
@@ -111,7 +111,7 @@ auto fromInteger(char* result, intmax_t value) -> char* {
|
||||
return result;
|
||||
}
|
||||
|
||||
auto fromNatural(char* result, uintmax_t value) -> char* {
|
||||
auto fromNatural(char* result, uintmax value) -> char* {
|
||||
char buffer[64];
|
||||
uint size = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user