Search found 11469 matches

by BigEd
Mon Mar 30, 2026 3:36 pm
Forum: Forth
Topic: A milliforth for 6502
Replies: 27
Views: 22944

Re: A milliforth for 6502

(Welcome!)
by BigEd
Sun Mar 29, 2026 5:24 pm
Forum: Forth
Topic: Claude and I Vibe Coded a Forth Interpreter
Replies: 107
Views: 2032

Re: Claude and I Vibe Coded a Forth Interpreter

I have to say, I don't quite see why it's so terrible not to have offset 0 available. Almost all 65xx programs work in a world where zero page (direct page) resources are limited, and most routines will have a limited range of addresses they can use. That 0 is such an unavailable address seems to me ...
by BigEd
Sat Mar 28, 2026 9:49 pm
Forum: Programming
Topic: DeanOS - Intro to my project
Replies: 4
Views: 151

Re: DeanOS - Intro to my project

Sounds good!
by BigEd
Sat Mar 28, 2026 7:25 am
Forum: Forth
Topic: Claude and I Vibe Coded a Forth Interpreter
Replies: 107
Views: 2032

Re: Claude and I Vibe Coded a Forth Interpreter

On the subject of verbosity, I gather that - perhaps mostly at the start of a question - it's good to say more, because more tokens as input means more computation applied to make the output. This might or might not be valid information!
by BigEd
Fri Mar 27, 2026 3:59 pm
Forum: Forth
Topic: Claude and I Vibe Coded a Forth Interpreter
Replies: 107
Views: 2032

Re: Claude and I Vibe Coded a Forth Interpreter

It's the nature of LLMs. It's not a person.
by BigEd
Thu Mar 26, 2026 7:50 am
Forum: Forth
Topic: Claude and I Vibe Coded a Forth Interpreter
Replies: 107
Views: 2032

Re: Claude and I Vibe Coded a Forth Interpreter

One tactic I've heard about is careful management of contexts: once an LLM has thrashed around for a bit, the very history of that session affects future performance. So, starting a new session and seeding it with the good bits from the one which went bad, and stopping short where it didn't work ...
by BigEd
Wed Mar 25, 2026 7:23 pm
Forum: Forth
Topic: Claude and I Vibe Coded a Forth Interpreter
Replies: 107
Views: 2032

Re: Claude and I Vibe Coded a Forth Interpreter

I gather that the paid versions of these things are very much better. In that line of thinking, it's impressive that a free version was so helpful.
by BigEd
Tue Mar 24, 2026 5:22 pm
Forum: Forth
Topic: Claude and I Vibe Coded a Forth Interpreter
Replies: 107
Views: 2032

Re: Claude and I Vibe Coded a Forth Interpreter

You seem to be confused, BDD. The text isn't a critique, it's a description. Seems reasonable to me that a software tool needs a description of the problem space.
by BigEd
Tue Mar 24, 2026 2:19 pm
Forum: Programming
Topic: A contest to reduce code size
Replies: 26
Views: 1004

Re: A contest to reduce code size

Five byte floats are handy for being able to store four byte integers…
by BigEd
Mon Mar 23, 2026 7:14 pm
Forum: Forth
Topic: Claude and I Vibe Coded a Forth Interpreter
Replies: 107
Views: 2032

Re: Claude and I Vibe Coded a Forth Interpreter

Maybe you could edit down a transcript of the most productive or decisive parts of the conversation and paste that in at the beginning of the next session? Maybe there's a better way... context is everything!
by BigEd
Sun Mar 22, 2026 4:48 pm
Forum: Forth
Topic: Claude and I Vibe Coded a Forth Interpreter
Replies: 107
Views: 2032

Re: Claude and I Vibe Coded a Forth Interpreter

Right, but my framing was aiming to help those of us who use the thing, not addressing questions of how the thing works. It's easy to trade joke descriptions, but what do we do, those of us who choose to engage?
by BigEd
Sun Mar 22, 2026 1:09 pm
Forum: Forth
Topic: Claude and I Vibe Coded a Forth Interpreter
Replies: 107
Views: 2032

Re: Claude and I Vibe Coded a Forth Interpreter

For me, the question is perhaps how best to work with such an assistant: tireless, enthusiastic, able to test their work, but not always understanding the goal.
by BigEd
Sat Mar 21, 2026 6:57 pm
Forum: Forth
Topic: Claude and I Vibe Coded a Forth Interpreter
Replies: 107
Views: 2032

Re: Claude and I Vibe Coded a Forth Interpreter

> I'm basically testing the quality into it.

I think this is a possible pitfall. Instead of a person who understands, has a mental model, of the problem, of the ISA, of the shape of the solution, and who might possibly make some omission or slip which could helpfully be discovered with testing ...
by BigEd
Sat Mar 21, 2026 12:35 pm
Forum: General Discussions
Topic: Visual6502 and opcodes $0B, $2B, $4B, $6B, and $BB
Replies: 2
Views: 201

Re: Visual6502 and opcodes $0B, $2B, $4B, $6B, and $BB

I note this remix of visual6502 offers more tools - an assembler, for one. I don't know if the simulation mechanics have been tweaked.
https://github.com/floooh/v6502r?tab=re ... ile#v6502r
by BigEd
Fri Mar 20, 2026 8:41 pm
Forum: General Discussions
Topic: Visual6502 and opcodes $0B, $2B, $4B, $6B, and $BB
Replies: 2
Views: 201

Re: Visual6502 and opcodes $0B, $2B, $4B, $6B, and $BB

I checked the first one, and indeed I see A is not modified from the FF value.

URL: http://visual6502.org/JSSim/expert.html?graphics=f&a=8000&r=8000&d=A9FF0B5Aeaeaea&steps=20

Visual6502 is a switch-level simulator, with modelling of charge storage, but no accurate model for charge-sharing. There ...