Search results
reTrO-New, a game programming IDE on your browser
Score: 195.74 %,
Type: Forum topic , Comments: 0 comments
Japanese developer hoge1e3 released a MSX IDE that exports ROM files directly and is based on his other project (a javascript+HTM5 IDE) called Tonyu 2 System . In this IDE, you write code in a cooperative-multitasking javascript dialect. The IDE ...
Updating pattern table and name table at the same time?
Score: 194.52 %,
Type: Forum topic , Comments: 21 comments
And a
Jp z,shift_whole_screen
Ld b,0
update_buffer1:
Inc (hl)
Inc hl
Djnz ...
shift_whole_screen:
Ld b,0
reset_block1:
Ld a,(hl)
Add a,-7
Ld (hl),a
Inc hl
Djnz ... {
word lastJiffy = JIFFY;
//d_value = 0;
while (lastJiffy == JIFFY) { ...
My Air Buster/Aero Blasters demo (MSX+V9990)
Score: 193.99 %,
Type: Forum topic , Comments: 13 comments
or assembly for this?
SDCC 4.1.0 with my own SDCC 4.1.0 with my own modified version of g9klib. I ... current version of MSXgl comes with SDCC 4.2.0, but I regularly test the snapshots to make sure I keep ... convention) and compile your code with the --sdcccall0 option.
New video of my V9990-powered New ...
[SDCC] Vote on this to fix makebin!
Score: 189.86 %,
Type: Forum topic , Comments: 6 comments
makebin is useless if you want to convert IHX into ROM files that don't start at #0, i.e. all ... be used with MSXhex.
MSXhex 0.1.3 - Convert Intel HEX file to binary ... address (default: 0)
-l length Total data length (default: 0, means autodetect)
-b length Bank ...
Microsoft BASIC on the Altair
Score: 189.51 %,
Type: Forum topic , Comments: 1 comment
In this post, Raymond Chen talks about the technique of jumping into the middle of an 8080 instruction that is found in Microsoft BASIC disassembled source code. Since Z80 is compatible with 8080, does MSX-BASIC also feature this technique?
...
Is SDCC 4.2.0 broken?
Score: 189.41 %,
Type: Forum topic , Comments: 4 comments
_func::
out (#0x02f), a
ld a, l
out (#0x02f), a
ld hl, #2
add hl, sp
ld a, (hl)
out (#0x02f), a
ret
And I call it like this: ...
{
uint8_t i;
for (i = 0; i < 10; ++i)
{
func(11 + i, 6, 32 + i); ...
[Math] Drawing a circle, point-by-point, without floating point support
Score: 186.93 %,
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.79 %,
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: 186.41 %,
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. ...
[FIXED] update disasm window in the debugger when slot changes or code is rewritten
Score: 186.04 %,
Type: Forum topic , Comments: 2 comments
I proposed a fix for a long-standing and confusing bug when debugging and it seems to be OK now according to my tests. It's currently in my fork, but I created a PR . Whoa, this bug is almost 7 years old! *_*
Nice! I encounter the issue ...
