Yann Vernier

Results 16 comments of Yann Vernier

I'm pretty sure I have some ancient test code lying around that could read calibration data from the original Lytro. I'll spend a little time trying to revive it.

Well, just because I can read it out doesn't mean I understand it! Part of it is JSON, and a bunch of chunks are clearly for varied parameters, but they're...

The F01 doesn't know about LFPs or calibration images, AFAICT. It does provide access to raws, thumbnails, and a calibration set. The protocol is a few custom SCSI commands, wrapped...

It is an issue for some people, but not all. I guess Vice has a license to distribute the unmodified ROMs somehow, but they are non-free binaries themselves, so won't...

https://github.com/lonetech/durexforth/tree/faster-build demonstrates running the deploy step in an automated fashion using Vice. Vice itself checks the program finishes in a finite time, and saves a screenshot of the last stage....

It does fit the compat.fs pattern as a word with standard functionality that isn't currently in use. I'd be quite happy with that.

That's jumping inside the PLOT routine, to the set part. The $fff0 vector points to $e50a, which presumably does a branch if the carry flag is set (bcs) before falling...

By comments in [disk.asm](https://github.com/jkotlinski/durexforth/blob/master/disk.asm), `loadb` and `saveb` may already be sped up if using accelerators like JiffyDOS. `included` uses its own BIOS read loop, though I'm not sure if it's...

It's doable. The search order property in itself mandates that word lists are searched, so we'd have to separate them. That might most easily be done by rearranging the dictionary,...

In https://github.com/jkotlinski/durexforth/discussions/428#discussioncomment-3468974 I already implemented hiding of the asm words, but not the Search-Order word set style of control. If inserted at the right place in base.fs, only one lift...