Search found 321 matches
- 17 May 2022 09:13
- Forum: GENERAL DISCUSSIONS
- Topic: [MAME] Emulating the MTX
- Replies: 38
- Views: 17614
Re: [MAME] Emulating the MTX
In practice. reading an unimplemented port usually returns whatever value was last on the data bus. If the port read is using an IN A,(ADDR) instruction, then that is the second byte of the opcode, i.e. the address of the port to read. There are a few places in the CFX-II ROM which rely upon this be...
- 24 Apr 2022 12:07
- Forum: NEW HARDWARE
- Topic: MFX mass-storage add-on
- Replies: 10
- Views: 230
Re: MFX mass-storage add-on
Should you get around to placing an order for the connectors, I could have an interest in a few, irrespective of the progress on the MFX. Spread the cost / risk.
- 31 Dec 2021 09:44
- Forum: REMEMOTECH
- Topic: REMEMOTECH as a MiSTer core?
- Replies: 6
- Views: 1234
Re: REMEMOTECH as a MiSTer core?
For those of us who have never heard of MiSTer, I did some Googling:
https://github.com/MiSTer-devel/Main_MiSTer/wiki
https://github.com/MiSTer-devel/Main_MiSTer/wiki
- 19 Sep 2021 08:29
- Forum: MEMOFEST 2021
- Topic: MEMOFEST 2021
- Replies: 8
- Views: 2906
Re: MEMOFEST 2021
Martin, it was very generous for you to offer to host Memofest yet again. But as you say everyone is still feeling cautious. Hopefully by next year the situation will have improved.
- 06 Jun 2021 09:21
- Forum: SOFTWARE
- Topic: Possibly hundreds (?) of new games for the MTX
- Replies: 28
- Views: 19103
Re: Possibly hundreds (?) of new games for the MTX
I have produced a bit of a write-up of the porting process for Dave's site.
It is an example of how, sometimes, speed improvements can best be obtained by re-thinking the high-level design rather than low-level optimisations.
It is an example of how, sometimes, speed improvements can best be obtained by re-thinking the high-level design rather than low-level optimisations.
- 18 May 2021 10:13
- Forum: MEMU
- Topic: MEMU (not only) on Pico
- Replies: 9
- Views: 3683
Re: MEMU (not only) on Pico
Thanks, fixed the link.
- 16 May 2021 18:17
- Forum: MEMU
- Topic: MEMU (not only) on Pico
- Replies: 9
- Views: 3683
Re: MEMU not only on Pico
My GitHub Repository now contains the latest source code for all my versions of MEMU: * Linux X-Window * Linux Framebuffer - No GUI required * Raspberry Pi Linux - Use GPIOs to connect an MTX keyboard, Joystick or Printer * Bare-Metal Raspberry Pi - Now includes Raspberry Pi 4 and 400 support * Rasp...
- 15 May 2021 20:58
- Forum: PROGRAMMING
- Topic: Puzzle 15 solver ?
- Replies: 6
- Views: 2866
Re: Puzzle 15 solver ?
As to skipping steps yes and no. There are routines to move a tile to a given row or column. These will get called for every tile, but if the tile is already in the correct position they will not have anything to do, and will return immediately. When trying to understand the code, you might find it ...
- 15 May 2021 12:01
- Forum: PROGRAMMING
- Topic: Puzzle 15 solver ?
- Replies: 6
- Views: 2866
Re: Puzzle 15 solver ?
MTX version of the Fifteen Puzzle solver attached. Run the program and keep on pressing the space bar to step through the solution. Hopefully I have got all the typos out. It used the 'human' algorithm, which is almost certainly not the most efficient in terms of number of moves, but does not requir...
- 14 May 2021 16:14
- Forum: PROGRAMMING
- Topic: Puzzle 15 solver ?
- Replies: 6
- Views: 2866
Re: Puzzle 15 solver ?
I have coded a prototype version of the 'human' algorithm. For me it was easiest to do this in Python, and enabled me to identify and solve the edge cases. Hopefully I have found them all. Having got this to work I should not find it too difficult to translate into MTX BASIC. If anyone is interested...