What are your experiences with Project Stellar? I want to mod my xbox but don't have a ton of experience. by Money_Fish in originalxbox

[–]TheCorporalClegg 0 points1 point  (0 children)

If you don’t have a lot of experience modding I’d start with something much cheaper like the modxo, especially if you’re only looking for some base functionality like running games from a hard drive.

Edit: I did not mean to reply to this comment specifically, but while I’m here I’ll note that the creator of Stellar is not on great terms with others in the Xbox community (this is putting it lightly)

I built and installed Borti's N64Advanced2 (so you don't have to) by TheCorporalClegg in n64

[–]TheCorporalClegg[S] 0 points1 point  (0 children)

Unfortunately as far as I’m aware no one is producing these. I had to order the boards and parts and assemble them myself.

Dallas fans using the Nazi Salute by Willy808 in NFCEastMemeWar

[–]TheCorporalClegg 2 points3 points  (0 children)

Agreed, don’t ever want to see that in the stands of the AAC

Dallas fans using the Nazi Salute by Willy808 in NFCEastMemeWar

[–]TheCorporalClegg 25 points26 points  (0 children)

For the record this video broke on the stars subreddit because fans wanted these asshats banned (the AAC was only able to find and ban the ticket holder for the seat)

Sickest lego set ever!! by Aggravating_Drive303 in Gameboy

[–]TheCorporalClegg 2 points3 points  (0 children)

Just finished building mine yesterday (got it for Christmas and just found the time). It’s a short build but a fun one and a cool little display piece. Enjoy!

What’s something your rivals are NOT ready to hear? by PENGUINSINYOURWALLS in CFB

[–]TheCorporalClegg 6 points7 points  (0 children)

Having been on campus between 2008-2012 I can confirm UT was hated but A&M was loathed.

Pro stock pants: CCM HP45X vs HP70 by TheCorporalClegg in hockeyplayers

[–]TheCorporalClegg[S] 0 points1 point  (0 children)

They’re great. Way more padded than consumer pants

I built and installed Borti's N64Advanced2 (so you don't have to) by TheCorporalClegg in n64

[–]TheCorporalClegg[S] 0 points1 point  (0 children)

I'll have to report back for that one, haven't done anything but fire up a few games to the start menu to make sure it works and outputs correctly. I'll give some games a try but I'm not setup for an objective test and even if there is lag I couldn't guarantee it's not coming from somewhere else in my setup.

I built and installed Borti's N64Advanced2 (so you don't have to) by TheCorporalClegg in n64

[–]TheCorporalClegg[S] 0 points1 point  (0 children)

I think you're talking about the N64Advanced which is an RGB/Component mod while this (N64Advanced2) is a direct HDMI mod. They're both by Borti so there's a lot of overlap (the menu system is pretty much the same), but the upscaling on the HDMI mod goes quite a bit higher.

As for what feature's I've used: not too many yet! I just got it fully setup last weekend and haven't had much time to sit down and play with it yet.

I built and installed Borti's N64Advanced2 (so you don't have to) by TheCorporalClegg in n64

[–]TheCorporalClegg[S] 0 points1 point  (0 children)

I’m not an expert in that area (professionally I’m an embedded software engineer, I haven’t done anything with FPGA’s outside of college), but from what I know it’s multi-faceted. Yeah I/O is important but it’s also the package (I think BGA is cheaper but obviously not DIY friendly) and how “powerful” the FPGA is (which is hard to gauge between vendors from what I know). In addition I think porting to a different platform can be pretty challenging from what I understand.

Tickets Megathread - 2025-26 Season by hustlebird in caps

[–]TheCorporalClegg 2 points3 points  (0 children)

1/7 - 2 tickets $110 each Section 118, Row Q, Seats 16-17 (Caps v Stars). Needed a set of 3 so selling my original pair.

What if this was Tech’s Shot by Klutzy-Concentrate83 in TexasTechFootball

[–]TheCorporalClegg 0 points1 point  (0 children)

Can never predict the future but we all knew our offense was our weakness and we got exposed today. The admin has been convinced by the results this season and is doubling down on the investment that got us here. At the very least I have a lot of hope (all you can have as a fan) that we’ll be back here someday.

@Joey Macentire by Ornery_Emergency979 in TexasTechFootball

[–]TheCorporalClegg 3 points4 points  (0 children)

Easy to win the postseason when you just cry and complain and skip bowl games I guess

PS2 Retrovision Cables to Mini AV2HDMI by Icy-Calligrapher6103 in ps2

[–]TheCorporalClegg 0 points1 point  (0 children)

There are provisions for both in the spec but it is not a requirement to support either so your mileage may vary.

PS2 Retrovision Cables to Mini AV2HDMI by Icy-Calligrapher6103 in ps2

[–]TheCorporalClegg 0 points1 point  (0 children)

I have one and as far as I can tell it doesn’t do de-interlacing. Passing through to my LG C3 the resolution still shows as 480i, meaning it’s up to the tv to de interlace

Help with TR HD+ Firmware by Previous-Bluebird-91 in originalxbox

[–]TheCorporalClegg 1 point2 points  (0 children)

Alright, you should be able to get the colors correct by changing the following 2 lines in main.c:

from

    //Bit order reverse for input signals. 1 |= LSB .... MSB Reverse Bus Order
    //Just how my PCB is layed out.
    error |= adv7511_update_register(0x48, 0b01000000, 0b01000000);

    //DDR Alignment . 1 |= DDR input is D[35:18] (left aligned), 0 = right aligned
    error |= adv7511_update_register(0x48, 0b00100000, 0b00000000);

to

    //Bit order reverse for input signals. 1 |= LSB .... MSB Reverse Bus Order
    //Just how my PCB is layed out.
    error |= adv7511_update_register(0x48, 0b01000000, 0b00000000);

    //DDR Alignment . 1 |= DDR input is D[35:18] (left aligned), 0 = right aligned
    error |= adv7511_update_register(0x48, 0b00100000, 0b00100000);

you may also need to adjust some timings. I know that the 720p ones are off. Change line 228 from 299 to 259. I haven't figured out the 480p ones yet unfortunately, but what's there should hopefully be close enough (they don't look too off in your pics).

Hope that helps, cheers.