Search results
[Math] Drawing a circle, point-by-point, without floating point support
Score: 186.14 %,
Type: Forum topic , Comments: 7 comments
sqrt which is slow.
https://yurichev.com/news/20220322_circle/
Here is the final non-naïve algorithm (in case the article goes away):
function circle(x0, y0, radius)
{
// starting point:
var x = radius;
var y = 0;
var err = 0;
while (x >= y)
{
// ...
New breakpoint viewer is ready!
Score: 187 %,
Type: Forum topic , Comments: 33 comments
like this in the condition to check:
[vpeek 0x1234] == 255
Would be nice if debug ... such breakpoint: bp#334
I'm using openMSX 17.0-330-g890c498ec on Debian Testing. Perhaps it's ... 17.0-330-g890c498ec on Debian Testing. Perhaps it's not even related to these last changes.
Not sure how ...
Github action to build debugger binaries
Score: 185.62 %,
Type: Forum topic , Comments: 2 comments
Packages are here . Needs testing since I don't own a windows machine. You will probably have to move the dlls from the subdirectories into the base directory where the binary is. Since windows expects executable and dlls in same directory. ...
