Johan Kotlinski

Results 139 comments of Johan Kotlinski

Pygmy Forth has been mentioned as an elegant model for block-based file editing: https://github.com/utoh/pygmy-forth/blob/master/pygmy.txt gforth also has block-based text editing: https://stackoverflow.com/questions/48837115/does-gnu-forth-have-an-editor

> saving each block in a separate file named, say, "b001" "b002" etc.? Technically, that would work just fine. And you are right, it would be the simplest reasonable thing....

I have some idea to create Block wordset, that a future editor can be built on. I should just get working on it. Some functionality for an editor could be:...

I haven't dug into those editors of yours yet, but I really like the code!

A new idea about Blocks, and how it could work with least code and maximum efficiency. - `9 USE` will open device 9 for exclusive use by the Blocks word...

That is also a nice approach. Like, I have not fully thought through everything. But I think a major reason to use sector-based blocks access would be speed. I have...

Yes, I would welcome any help. I have been too busy lately. Getting sample and wave playback to work well is the difficult part. Let me know if you have...

For the sample playback. The biggest change i remember for sample playback, was to make it driven by timer rather than LCD interrupt. The timer is reset in every vertical...

Work in progress: https://github.com/jkotlinski/durexforth/pull/554