I presume someone is fiddling with the theme....
So while you're at it, can you up the contrast level for the icons representing topics with new/unread articles vs. ones that are "caught-up" ? It's now very hard to make out...
Thanks,
-Gordon
Search found 1677 matches
- Tue Mar 31, 2026 7:32 am
- Forum: General Discussions
- Topic: Forum theme changes?
- Replies: 5
- Views: 159
- Mon Mar 30, 2026 10:56 am
- Forum: Programming
- Topic: DeanOS - Intro to my project
- Replies: 4
- Views: 165
Re: DeanOS - Intro to my project
My next goal is to get started on the command parser and monitor. Id like some input on what you find essential from a good monitor/disassembler.
I went through this myself when doing my own Ruby project a while back. What I found was that it was hard to not let my past experiences on the Apple ...
- Tue Mar 24, 2026 8:36 am
- Forum: Programming
- Topic: A contest to reduce code size
- Replies: 26
- Views: 1067
Re: A contest to reduce code size
Floating point is (IMO) badly handled by many languages (and programmers!) It's hard to get right and harder to please everyone with your interpretation of right ...
In the C world we have floor(), ceil() and rint(). Floor truncates to the nearest integer down, ceil truncates to an integer up and ...
In the C world we have floor(), ceil() and rint(). Floor truncates to the nearest integer down, ceil truncates to an integer up and ...
- Thu Mar 19, 2026 8:54 am
- Forum: General Discussions
- Topic: Its been a while :)
- Replies: 9
- Views: 661
Re: Its been a while :)
I'm not convinced you need full duplex for a little project like this.
Or maybe I'm just justifying my own half-duplex minimal SBC... which runs at 38400 baud with the 6507 running from a 2Mhz xtal.
I can download code into it via my terminal program by making the receiving side not echo ...
Or maybe I'm just justifying my own half-duplex minimal SBC... which runs at 38400 baud with the 6507 running from a 2Mhz xtal.
I can download code into it via my terminal program by making the receiving side not echo ...
- Tue Mar 17, 2026 8:24 am
- Forum: Programming
- Topic: A contest to reduce code size
- Replies: 26
- Views: 1067
Re: A contest to reduce code size
I'd like my BASIC interpreter (see previous post ) to fit into 8K but after working on it for a few days, I've only managed to reduce it by about 100 bytes. I need to eliminate another 280.
I'm considering offering a bounty for patches that save space. It would mostly be for fun, with the bounty ...
I'm considering offering a bounty for patches that save space. It would mostly be for fun, with the bounty ...
- Sat Mar 14, 2026 6:46 pm
- Forum: Programming
- Topic: Happy Pi Day
- Replies: 18
- Views: 2013
Re: Happy Pi Day
Uh...I’ll get my coat and quietly exit. :D
With puns like that I was hoping you'd be here all week.
@Gordon, thanks for the details. I was going to ask how you achieved that many digits, as I was suspecting the Spigot algorithm. I'd considered using that to avoid arbitrary precision arithmetic ...
With puns like that I was hoping you'd be here all week.
@Gordon, thanks for the details. I was going to ask how you achieved that many digits, as I was suspecting the Spigot algorithm. I'd considered using that to avoid arbitrary precision arithmetic ...
- Sat Mar 14, 2026 3:46 pm
- Forum: Programming
- Topic: Happy Pi Day
- Replies: 18
- Views: 2013
Re: Happy Pi Day
Maybe a Pi challenge.... :-)
Although I suspect the good folks over at stardot will beat just about anyting.... This is my '816 system generating the first 1000 digits. The program is wrtten in BCPL and takes almost 500 seconds to run on my 16Mhz system...
Makes me wonder how much faster that ...
Although I suspect the good folks over at stardot will beat just about anyting.... This is my '816 system generating the first 1000 digits. The program is wrtten in BCPL and takes almost 500 seconds to run on my 16Mhz system...
Makes me wonder how much faster that ...
- Sat Mar 14, 2026 11:41 am
- Forum: Programming
- Topic: Happy Pi Day
- Replies: 18
- Views: 2013
Re: Happy Pi Day
Maybe a Pi challenge.... :-)
Although I suspect the good folks over at stardot will beat just about anyting.... This is my '816 system generating the first 1000 digits. The program is wrtten in BCPL and takes almost 500 seconds to run on my 16Mhz system...
Makes me wonder how much faster that ...
Although I suspect the good folks over at stardot will beat just about anyting.... This is my '816 system generating the first 1000 digits. The program is wrtten in BCPL and takes almost 500 seconds to run on my 16Mhz system...
Makes me wonder how much faster that ...
- Sat Mar 14, 2026 9:50 am
- Forum: Programming
- Topic: Happy Pi Day
- Replies: 18
- Views: 2013
Re: Happy Pi Day
Maybe a Pi challenge.... :-)
Although I suspect the good folks over at stardot will beat just about anyting.... This is my '816 system generating the first 1000 digits. The program is wrtten in BCPL and takes almost 500 seconds to run on my 16Mhz system:
Time taken: 496.107... pi = 3.+
1415926535 ...
Although I suspect the good folks over at stardot will beat just about anyting.... This is my '816 system generating the first 1000 digits. The program is wrtten in BCPL and takes almost 500 seconds to run on my 16Mhz system:
Time taken: 496.107... pi = 3.+
1415926535 ...
- Wed Mar 04, 2026 5:54 pm
- Forum: General Discussions
- Topic: Firmware and infrastructure for a 6502 portable
- Replies: 26
- Views: 3771
Re: Firmware and infrastructure for a 6502 portable
I was rummaging through my vast archives of old code today, as one will, when I found that I've already written the file server and download client for the proposed online facility.
I tested the file server and downloader parts of this package with a dynamic DNS service, and found it to be working ...
I tested the file server and downloader parts of this package with a dynamic DNS service, and found it to be working ...
- Fri Feb 27, 2026 6:56 pm
- Forum: Hardware
- Topic: Contemplating DMA
- Replies: 17
- Views: 1526
Re: Contemplating DMA
The core reads and writes of my FAT32 CF card system are between the card and a couple of page-aligned pages in memory, and the code requires 13 clocks per byte, plus a little overhead, giving a maximum transfer rate of ~70kB/s per MHz (I'm using a 1.8432MHz clock). In some cases, the read rate is ...
- Tue Feb 24, 2026 9:08 am
- Forum: Newbies
- Topic: 65C816 address decoding
- Replies: 3
- Views: 1638
Re: 65C816 address decoding
The project will be on a PCB, all through hole, aim is to get 4Mhz.
Trying to get my head around address decoding for 1M or 2M or RAM.
FWIW: My project is all through hole, 2-sided board and runs at 16MHz. I use 2 GALs. It only has 512KB of RAM though - I thought long and hard about how much ...
- Sat Feb 21, 2026 5:12 pm
- Forum: Hardware
- Topic: CPLD driven clocks sanity check
- Replies: 2
- Views: 450
Re: CPLD driven clocks sanity check
Hi guys
I've setting up an SBC design at the moment which will involve an SAA5050 Teletext Character Generator IC as part of it's video circuitry.
That chip requires two inputs: 6MHz to the TR6 pin and 1MHz F1 pin.
PHI2 is going to be switchable between 16MHz and 8MHz from a 32MHZ Source ...
I've setting up an SBC design at the moment which will involve an SAA5050 Teletext Character Generator IC as part of it's video circuitry.
That chip requires two inputs: 6MHz to the TR6 pin and 1MHz F1 pin.
PHI2 is going to be switchable between 16MHz and 8MHz from a 32MHZ Source ...
- Fri Feb 20, 2026 9:38 pm
- Forum: General Discussions
- Topic: Firmware and infrastructure for a 6502 portable
- Replies: 26
- Views: 3771
Re: Firmware and infrastructure for a 6502 portable
When doing terminal I/O support for PDP11 BASIC I did extensive research into ANSI/VT character sequences. Loads and loads of available documentation missed huge chunks out, I wanted a COMPLETE list of ABSO. LUTELY. *EVERYTHING* - *INCLUDING* gaps. Not just "we've omitted some stuff we oh so ...
- Thu Feb 19, 2026 6:48 pm
- Forum: General Discussions
- Topic: Firmware and infrastructure for a 6502 portable
- Replies: 26
- Views: 3771
Re: Firmware and infrastructure for a 6502 portable
I suppose where you draw the line depends on how much of a retro purist you are. I know putting a Linux SBC in a case and running a 6502 emulator on it wouldn't work for me. It would have telltale signs of a Linux computer running an emulator, however hard I tried to hide them.
I'm with you there ...
I'm with you there ...