Recent content by 8bitbubsy

  1. 8bitbubsy

    Subtle video noise SE/30

    It's a quite high-hour FBT. The glue blob on top being this dark in color is a good indication. I may be wrong about this, but I think the more used a flyback transformer is, the higher chance it has of developing cracks and starting to arc internally.
  2. 8bitbubsy

    A 512k with a surprise inside

    Neat find! Also that fan install looks very pro.
  3. 8bitbubsy

    MODTracker audio replay on early 68k macs

    I have attached a sound recording of my software-mix PT player port playing Jester's "My Glamorous Life" on a 7.09MHz Amiga 500 in WinUAE (cycle-accurate mode). I have disabled the Amiga's 4.4kHz low-pass filter to retain that sharpness that will most likely be present on a compact Mac. The Mac...
  4. 8bitbubsy

    MODTracker audio replay on early 68k macs

    Yah, MOVEM would obviously give the best thruput, but I think it's hackish to put the lower byte (which can be any arbitrary value) of my 16-bit mixing buffer into the floppy drive motor speed register. :-)
  5. 8bitbubsy

    MODTracker audio replay on early 68k macs

    I know, I was talking about moving the upper bytes from my own 16-bit mixing buffer to a data register. Huh? Isn't the audio output buffer on compact Macs 8-bit sequential bytes? So I think I'll have to do something like... MOVE.L (A0)+,D0 ; read two 16-bit samples from mix buffer (upper...
  6. 8bitbubsy

    MODTracker audio replay on early 68k macs

    Ah nice. So if I understand it right I can use MOVEP.L (A0)+,D0 to store four high-bytes from my 16-bit mixing buffer to D0, then do MOVE.L D0,(A1)+ (where A1 points to the 8-bit audio buffer)? That's for sure a great optimization. Also yeah, I'll have to figure out how and at which point...
  7. 8bitbubsy

    MODTracker audio replay on early 68k macs

    OK scratch that, I will try to support Mac Plus too, though I have a feeling that if it's fast enough on a SE, it may occasionally hiccup on a Plus.
  8. 8bitbubsy

    MODTracker audio replay on early 68k macs

    Yeah, I'm worried it may not be fast enough on a 68k compact Mac, which would be a huge letdown, but I'll give it a try first before I conclude with anything at all. Though I'm only going to support Macintosh SE or newer, as I need all the CPU time I can get. I have some things in mind to...
  9. 8bitbubsy

    MODTracker audio replay on early 68k macs

    Yes. I already made a 4ch 16-bit software-mixer for 7MHz 68000 Amigas using the original PT replayer, so I know it works. It mixed at around the same rate as the Mac version will use (22kHz). Not sure when I'll have something to show off, I'll need to set up some stuff on my Macintosh Classic...
  10. 8bitbubsy

    MODTracker audio replay on early 68k macs

    At least #define can be used for inline asm, that is good enough for me (#define a block of code, repeat the definition N times inside the inline asm).
  11. 8bitbubsy

    MODTracker audio replay on early 68k macs

    Thanks! That’s indeed nice and clean. No need for a separate assembler after all. Does it support the REPT directive for repeating a block of asm code?
  12. 8bitbubsy

    MODTracker audio replay on early 68k macs

    OK, so THINK C 5 it is, but I need an assembler as well. I don't want to inline the whole mixer and replayer, and I want both of those to be in 100% assembler for minimal overhead.
  13. 8bitbubsy

    MODTracker audio replay on early 68k macs

    Bumping this. I am going to port the ProTracker replayer to 68000 Macs one day, I just need to set up a development environment that compiles C code (for loader/GUI) and assembles assembly code (replayer/mixer), linking together the two into a single executable. Any suggestions for a dev setup...
  14. 8bitbubsy

    Classic mac CRT fuzzy in the corners?

    Hm, interesting! So I guess the claim that it lacks dynamic focus is either not true, or that it doesn't matter in practice.
  15. 8bitbubsy

    Subtle video noise SE/30

    If the problem comes back, consider recapping the analog board. Yes I know, they very rarely need recapping on these Macs, but the caps are still way past their designated lifetime. It sounds a little like a capacitor issue to me; noise that goes away over time. But could be dried joints too of...
Back
Top