Steven Hugg

Results 89 comments of Steven Hugg

Hi! Guess I need to turn on Github notifications 👍 Yep, timing for macros is missing IIRC because DASM doesn't have a very comprehensive listing.

The IDE's Verilog compiler doesn't yet support bit vectors longer than 32 bits. I think this would require a fair amount of mucking about in Verilator, or even going to...

That's weird, I wonder if there are any messages in the Console Log. Sometimes exceptions kill the compiler until reload.

I think this may be fixed in newer versions. Make sure you do a full refresh as Chrome aggressively caches .js files. (That's why I have a separate /x.y.z/ subfolder...

Also doesn't work on Firefox 89.0.2, Safari 14.1.1 (MacOS 10.15.7) ctrl+shift+left works, though.

There hasn't been a new release on the official site, but try here: https://sehugg.github.io/8bitworkshop/ BTW you can upload ROMs to the IDE via the File menu instead of clicking on...

That's strange, do you have a game controller connected? Or better yet -- open in a private window and see if that fixes it.

I think soundfile.write() expects the axes to be swapped: ```python y, sr = librosa.load(path=vid, sr=44100, mono=False) path = os.path.join(os.getcwd(), 'library', audioid+'.wav') sf.write(path, np.swapaxes(y,0,1), 44100) ``` I see you can pass...

I have gotten a few requests for PC Engine, I think it's pretty feasible, since it has no BIOS and supported by CC65.

Trick or treat, PC Engine is started: https://sehugg.github.io/8bitworkshop/?platform=pce Needs debugging support (porting the jspce emulator to the Machine interface) Needs more code samples (we have CC65, CA65 and Wiz) Probably...