I'm still looking for a (working!) tool that limits the CPU freq automatically once a temperature limit has been reached.
27.09.2025 11:54 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0@afachat.bsky.social
IT-Architect and Retro-Computing Hobbyist. See http://www.6502.org/users/andre/index.html and https://extrapages.de/
I'm still looking for a (working!) tool that limits the CPU freq automatically once a temperature limit has been reached.
27.09.2025 11:54 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0shows a setting for max CPU frequency set to 1950 MHz, and a temperature graph in the background with 78ยฐ max temperature
I actually finally seem to have found a tool to effectively limit the CPU speed and thus avoid overheating....
27.09.2025 11:52 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0Some updates on the MicroPET, and impressions from the classic computing 2025 from last weekend!
#8bit #mos6502 #8bittimes
youtu.be/vvN65JlFd0E
A photo of a part of a screen of a ThinkPad W510 with temperature displays, showing CPU temperature in the range of 80 to 95 degrees Celsius
Rendering my new video is putting stress onto that old machine ... probably time to get a new one ...
#8bit #mos6502 #8bittimes
A Commodore 8032 showing the start screen of the Asteroids game
A Commodore PET with a HSG high speed vector graphics card, where you can play asteroids!
#8bit #mos6502 #Commodore
3 PET clones, and one original PET 4032
Today in Hof, Germany: the classic computing event with loads of classic machines to see!
I'll be presenting my MicroPET Commodore PET clones!
#8bit #mos6502 #MicroPET #Commodore @wearecommodore.bsky.social
For being newbie, a great start! I didn't notice!
Btw on my mobile, the site banner isn't even showing!
Advertised an article on the Amiga with a picture of an IBM PC? That isn't even in the article as far as I can see?
Please....!
While Commodore just got revived, Microsoft released the source code for Microsoft BASIC as used in the Commodore PET and others under the MIT open source license! opensource.microsoft.com/blog/2025/09...
#8bit #mos6502 @wearecommodore.bsky.social
We've been sleeping for 30 years. Please excuse us. Now, the best-selling home computer ever is back. Unplug The Chaos. Return To The Pixel. #wearecommodore www.commodore.net
12.07.2025 15:22 โ ๐ 134 ๐ 43 ๐ฌ 16 ๐ 11Hey, remember Commodore PET?
https://en.wikipedia.org/wiki/Commodore_PET
#discontinued #nostalgia
A lunar lander is displayed in a dimly lit environment, showcasing its intricate design with reflective materials. In the foreground, a person sits at a commodore PET playing space invaders.
The absolutely best place to play Space Invaders
09.08.2025 19:01 โ ๐ 8 ๐ 3 ๐ฌ 0 ๐ 0caching changes is basically tracking deltas (if you don't want to compare the whole model on save - that depends on the model size) and a difference only comes in if consecutive changes affect the same parts of the model.2/2
15.08.2025 09:10 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0That's another option. You need to weigh in the size of the model, the total runtime, the number of changes per runtime, and how many changes affect the same part of the model. The latter is probably the most important. 1/2
15.08.2025 09:10 โ ๐ 1 ๐ 0 ๐ฌ 2 ๐ 0If you have a deterministic model, you only need to save the changes to it in case you do changes. Might be much less data, possibly depending on the amount of erosion. But probably better to compress anyway
15.08.2025 07:54 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0I love the 6502. You can just look at the code and understand it. (Except for all the weird branching modes, but that's it's own thing)
And hooking it up to hardware? Slap a buffer between it and your other chips and it'll just talk to them. To the 6502, everything is a memory location.
Herzlichen Glรผckwunsch CDU, CSU und Spahn. Ein Sieg fรผr die AfD und andere Rechtsradikale, eine Niederlage der Demokratie. www.spiegel.de/politik/deut...
07.08.2025 13:30 โ ๐ 3 ๐ 1 ๐ฌ 1 ๐ 0Can you keep up with the Commodore?
01.08.2025 20:00 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0Actually just know how to build logic circuits from logic equations and registers. And then you just need to learn the formalisms like syntax
25.07.2025 10:31 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0Basically VHDL is a way to describe logic equations and registers - basic logic stuff. And most of my VHDL is just like that. The rest is compiler magic
25.07.2025 10:30 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0There are certain limitations regarding memory bandwidth that actually made me use C64 like sprites as well. The sprite info needs to be fetched in time, and there are only so many off screen cycles available...
24.07.2025 19:06 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0Oh, you're asking about the 'code'? I meant VHDL code I use to program the FPGA
24.07.2025 19:04 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0Yes it's FPGA. But you need to control the video output, esp if you want to be somewhat compatible with the PET's CRTC chip with its flexible screen geometry. So, you can use it like a CRTC for most parts, with additional registers similar to the VDC and VIC-II
24.07.2025 19:03 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0The video resolution is fixed either VGA 720x576p50 or 720x480p60 (or half framerate for TV compat.) The PET CRTC can produce various screen geometries, with 320/640x200 by default. Those are just put into that 720x576 box ('frame canvas' maybe my wording isn't ideal), with the rest being border.
24.07.2025 19:01 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0Video is 6bit RGB, hires up to 720x576, various colour modes. 8 sprites. More details see here github.com/fachat/upet_...
24.07.2025 16:32 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0Unofficial opcodes don't work indeed. The hardware should support pulling the CPU core into the FPGA but haven't tested that. Haven't seen any (old) programs using unofficial opcodes, though. That became more popular with the C64 ...
24.07.2025 16:31 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0Only for the video and memory mapping. 65816 otherwise, from 1MHz up to 13.5MHz, with VGA 720x576 video output
24.07.2025 07:16 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0Oh and it does let you decide everytime which model you want to run, from 2001 to 8296
24.07.2025 05:50 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0That's a PET reproduction with all new parts, modern interfaces, and many extensions
24.07.2025 05:49 โ ๐ 1 ๐ 0 ๐ฌ 2 ๐ 0
What started out as a repair video for a broken PET 3032 became a video on repairing two PET keyboards first: youtu.be/bPpjxiyjXZ8 (the rest of the repair is to follow)
#8bit #mos6502 #commodore #commodorepet