Gered King

Results 8 issues of Gered King

The HTML pages loaded into rpatchur's WebView will of course need to at some point use Javascript in button click handlers or whatever else to perform actions, and that means...

Not really a fan of XML serialization in general, and I'm not too impressed with XStream overall either. Would rather use some simple JSON serialization. Probably will use JsonBeans for...

enhancement

There seems to be some issue with serialization which causes saved runs created with Llanfair running on one JVM version where they won't load in the same version of Llanfair...

bug

I'm not too impressed with the current options for customizing what is shown in the table of splits (the History component). I'd like to have some additional options including possibly...

enhancement

When compiling a certain configuration of the [FatFS](https://elm-chan.org/fsw/ff/) sources using cc68k 5.13 and specifying `--core=68020`, or later, an internal error results: ``` cc68k --core=68040 --target=A2560K -O2 --speed --always-inline --no-cross-call --code-model=large...

Just noticed this one yesterday. Code like this: ``` uint16_t value = 0x081e; uint8_t high_byte = (value >> 8); uint8_t low_byte = value & 0xff; ``` Will produce an incorrect...

I've been meaning to log this bug for several months now, but kept forgetting because there is an easy work around. Currently with cc65816, if your code uses the modulo...

Sorry for the semi-vague title, I'm truly baffled by this one so not sure what would be more descriptive. I've attached an isolated bit of code from a project of...