Jump to content
IGNORED

Bus Stuffing Demos


SpiceWare

Recommended Posts

The issues with the BUS demos came up in the @ZeroPage Homebrew interview with @SpiceWare. I mentioned that I have one of the problematic Juniors that have issues with the BUS demos, and I would be willing to lend out my system if it might help with diagnosis.  I was told that @batari was looking into BUS issues, and might be interested in talking me up on this? Anyway, I just wanted to put that out there.  ? 

  • Like 2
Link to comment
Share on other sites

Yes, many BUS issues may have been resolved, and what is really needed now is to write a new driver and get that out there for testing to see how effective it will be in practice. It will take some effort because the driver may require a short burn-in period on problematic consoles while the driver determines the best way to deal with them. Basically, it tries to figure out which bits will stuff and which won't. It can deal with up to two bits that fail by using 6507 store instructions instead on those bits.

 

The burn-in period will probably consist of an encapsulated graphic image on the title screen made up of sprites, missiles and/or the ball, and enclosed by the playfield, where the console tests how the console responds to various stuffing attempts, and checks the integrity of the image by checking collisions. Most consoles will work immediately, though some will take a few seconds to find a good solution. Or, if your console fails completely then that will be apparent too.

  • Like 5
Link to comment
Share on other sites

7 hours ago, Omegamatrix said:

Great!

 

I vote for this burn-in screen to be an image of a bus, being stuffed by various Atari characters boarding.

Funny, but something like that could work if you don't mind a possibly glitchy image until it gets figured out.

 

My initial idea was to use a sprite with a logo for BUS, with one player as the object and one in the background behind the player. All collision registers are cleared before the graphic and on a working console, no collisions should be set afterward. Maybe with an audio cue and color change when testing passes.

 

This could be done in multiple lines. Basically, it would try stuffing all bits low first. The sprite should be at least 8 lines high, and the background sprite would be something like this:

 

 .byte %10000000

 .byte %01000000

 .byte %00100000

 .byte %00010000

 .byte %00001000

 .byte %00000100

 .byte %00000010

 .byte %00000001

 

The "main" sprite can be anything, as long as bits above are clear. Then, bus stuff the sprite for 8 lines and record collisions on each line. If any bits fail to stuff, collisions will be set and the failing bits can be recorded.

 

For the main color, pick a high luminance, and a low luminance for the background sprite, but brighter than the background.

 

The current BUS driver can stuff low or high on any bit. If stuffing low fails after a time, then you can try stuffing high. It would work like the above but with inverted graphics (could be transparent by swapping background and player colors.) Then, see if any of the low bits will work by stuffing high.

 

The BUS driver can deal with up to two bits that fail to stuff so that alone should "pass" most consoles pretty quickly.

 

To keep the driver simple, I will probably leave it up to the programmer to determine what bits to stuff low, what to stuff high, and what bits failed to stuff high or low. The bits failing to stuff, if any, would be specified in a mask register passed to the BUS driver so it can handle these bits in a different way. This way we can write the driver soon and let programmers sort out the best methods for stuffing detection later.

 

Once the BUS driver is written, y'all can create these bit detection screens :) Shouldn't be too long...

  • Like 3
Link to comment
Share on other sites

  • 1 month later...
9 minutes ago, Thomas Jentzsch said:

As far as I can tell, none of these demos work with Stella. Any idea what is wrong?

 

Yes, it's in the initial post:

On 10/19/2016 at 7:19 PM, SpiceWare said:

CURRENT VERSIONS OF THE DEMOS:

Some demos were original posted in other topics.

NOTE: At this time these demos only work on real hardware via a Harmony Cartridge.

1 demos prior to June 6, 2017 run under Stella 5.0.0-pre6 or pre7.

2 demos from June 6 on need Stella 5.0.0-pre8 or newer.

 

So RPG works in the current Stella, but none of the others as they were created when the BUS driver was still in flux. Updating the older demos to use the latest BUS driver is on my To Do list; though I have no idea when that'll happen, probably when I start working on the BUS forum in the Harmony/Melody club.

 

1297475744_ScreenShot2020-09-28at1_28_38PM.thumb.png.25f8e3c28a6e0ef2d99525d5ef706b6e.png

 

 

 

  • Like 4
  • Thanks 1
Link to comment
Share on other sites

  • 4 months later...

This development is incredible. Being able to use all 6 horizontal sprites with colour is amazing. The RPG demo is jaw dropping. I have been trying to push the limits of the 8 character coloured tile engine I used in Pitkat but I realise now it's not possible, and I think even with CDFJ it's not possible. Bus stuffing is the only way. This will bring out a whole new generation of games. Very cool work!

  • Like 3
Link to comment
Share on other sites

  • 1 year later...

Stella 6.7 was just released and contains some updates I've done for the BUS Stuffing support.  I've found 4 versions of the BUS driver that I've named BUS0 thru BUS3.  Most of the older demos now work, though some don't as BUS was undergoing numerous revisions back then. Additionally the audio routines only work correctly for the BUS3 version of the driver.

 

1221368993_ScreenShot2022-06-13at5_41_56PM.thumb.png.50053b0e362064f9d201c6faa0cec0ed.png

 

1114565854_ScreenShot2022-06-13at5_42_05PM.thumb.png.9374c564554a7807b837a0095b1d96d3.png

 

 

The debugger will tell you which version of the BUS driver is being used:

 

 644147871_ScreenShot2022-06-13at5_51_41PM.thumb.png.4ab728b95a1b6bb51be037a03ff3d53b.png

 

821878652_ScreenShot2022-06-13at5_52_53PM.thumb.png.d91138571f388ed3f9a256ca4ad5348b.png

 

1234027551_ScreenShot2022-06-13at5_51_55PM.thumb.png.371638665b1a0b7aac70e5541f441b1e.png

 

607885231_ScreenShot2022-06-13at5_52_14PM.thumb.png.eb2ec202c68b5c5baa2855cf88a521cc.png

  • Like 7
  • Thanks 3
Link to comment
Share on other sites

  • 10 months later...
On 10/20/2016 at 10:19 AM, SpiceWare said:

1,2 most demos now work using Stella 6.7 or newer.

thanks for getting this working again. Good to go through and review the demos again. I wanted to see how the 128 kernel worked, and was able to see the kernel source in action in Stella. It's good that there's a way to draw 128 pixels horizontally, would be great for wireframe rendering.   

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...