Search found 226 matches

by ry755
Sun Mar 05, 2023 3:31 am
Forum: New to Uzebox? Start here!
Topic: Wiki is severly outdated, needs to be more friendly
Replies: 19
Views: 18378

Re: Wiki is severly outdated, needs to be more friendly

I wonder if that has all of the Atmel (now Microchip) patches applied, since the latest official version on Microchip's website is 7.3.0. One example that used to be different is the avr-objdump command has extra parameters specific to AVR chips. I'm not on a computer now but IIRC one of the specif...
by ry755
Sun Mar 05, 2023 1:31 am
Forum: New to Uzebox? Start here!
Topic: Wiki is severly outdated, needs to be more friendly
Replies: 19
Views: 18378

Re: Wiki is severly outdated, needs to be more friendly

danboid wrote: Sat Mar 04, 2023 9:20 pm I run Debian testing on my laptop and I use the default avr-gcc in the Debian testing repo which is currently avr-gcc 5.4.0
Yikes that's still really old, on my Fedora 37 box I have avr-gcc 12.1.0.

Code: Select all

$ avr-gcc --version
avr-gcc (Fedora 12.1.0-2.fc37) 12.1.0
by ry755
Fri Mar 03, 2023 9:20 am
Forum: Hardware
Topic: Uzenet adapter V2
Replies: 44
Views: 15079

Re: Uzenet adapter V2

When it was attached I tried UzeboxUI which loaded but the apps menu was empty and I think a few other things were missing too so maybe I have a problem with my Uzenet adapter? Did you copy the uzeboxui.txt file to the SD card? Also try clicking the About option in the menu, if a window opens up an...
by ry755
Sun Feb 26, 2023 10:37 am
Forum: Games & Demos
Topic: MegaBomber
Replies: 88
Views: 12587

Re: MegaBomber

Questions someone probably knows the answer to. As I understand it >= v5 bootloaders can actually load from an arbitrary offset on the SD, not just the beginning of a file? So the individual .uze files could be padded to the max size of 60K, then just directly concatenate multiple into 1 file to ma...
by ry755
Sun Feb 26, 2023 12:53 am
Forum: Hardware
Topic: Foal of un1b0x
Replies: 63
Views: 13745

Re: Foal of un1b0x

Very nice :D

I have yet to 3D print a case for my Uzebox, it's still just the bare PCB but honestly that kinda adds to the coolness factor of it hehe
by ry755
Sun Feb 26, 2023 12:49 am
Forum: Games & Demos
Topic: New UzeboxUI Apps
Replies: 4
Views: 503

Re: New UzeboxUI Apps

I didn't dig into the code enough to know for sure, though being 16 bit, is the 3K limit completely arbitrary to allow lots of apps or something else? Yep that's exactly it, perhaps it's a bit overkill but it's designed to allow up to 10 windows open at a time, each with their own VM. Since it's be...
by ry755
Sat Feb 25, 2023 6:23 am
Forum: Games & Demos
Topic: New UzeboxUI Apps
Replies: 4
Views: 503

Re: New UzeboxUI Apps

Awesome, thanks for doing this!! Hopefully we'll see some more UzeboxUI apps from others too :D I should probably explain about the jump_to_main.py thing. EmbedVM applications' `main()` function doesn't always begin at address 0, so what that python script does is parse the generated header file and...
by ry755
Fri Feb 24, 2023 10:36 am
Forum: Uzebox Derivatives & open source consoles
Topic: Commander X16
Replies: 45
Views: 10253

Re: Commander X16

danboid wrote: Fri Feb 24, 2023 9:29 am How does AVR asm compare to Z80? I've never done any assembly.
Z80 assembly is certainly easier to learn imo, it was one of the first assembly languages I ever learned. AVR assembly isn't hard though, it's just different.
by ry755
Fri Feb 24, 2023 2:05 am
Forum: Tools, Documentation & Tutorials
Topic: T2K on youtube
Replies: 12
Views: 3146

Re: T2K on youtube

I love this so far!! Especially with the humor and stuff, it makes it fun to watch hehe. I'd say definitely keep going!
by ry755
Fri Feb 24, 2023 1:54 am
Forum: Games & Demos
Topic: UzeboxUI - a GUI demo for Uzebox
Replies: 31
Views: 2668

Re: UzeboxUI - a GUI demo for Uzebox

Given that...I doubt you could do much visually in a real time app, if it had to actually store and churn out arbitrary pixels for everything in app code. I guess I'm trying to say this tile based version seems a better balance than I imagined, and M3 RAM tiles might not be too far off the amount o...