Search found 358 matches
- Tue Nov 19, 2024 7:59 pm
- Forum: CX16 General Chat
- Topic: BASLOAD and other general X16 usage
- Replies: 5
- Views: 446
Re: BASLOAD and other general X16 usage
Yes, we need a solution to that. The #include option complicates things. Maybe a reverse lookup function in BASLOAD
- Tue Nov 19, 2024 3:50 pm
- Forum: X16 Feature Requests
- Topic: ROM Text Editor - where are file details?
- Replies: 2
- Views: 178
Re: ROM Text Editor - where are file details?
Hi, Great that you like the text editor! You'll find the manual here: https://github.com/stefan-b-jakobsson/x16-edit/blob/master/docs/manual.pdf Appendix B contains information on how to launch the editor, which I think is of particular interest to you. Some notes: The text buffer is stored in banke...
- Sun Oct 06, 2024 7:32 pm
- Forum: X16 Software Support
- Topic: ROM 47
- Replies: 7
- Views: 638
Re: ROM 47
Looks like you don't have the correct tool. This is the only one I know of: https://github.com/FlightControl-User/x16-flash/releases It will update the Kernal, the VERA and the SMC. If you only want to update the Kernal, ensure that VERA.BIN and SMC.BIN don't exist in the current folder. You might g...
- Sat Oct 05, 2024 6:35 pm
- Forum: X16 Software Support
- Topic: ROM 47
- Replies: 7
- Views: 638
Re: ROM 47
You can download R48 ”Cadmium” here https://github.com/X16Community/x16-rom ... es/tag/r48
- Sat Oct 05, 2024 6:33 pm
- Forum: X16 Software Support
- Topic: ROM 47
- Replies: 7
- Views: 638
Re: ROM 47
You’ll get R48 ”Cadmium” here https://github.com/X16Community/x16-rom ... es/tag/r48
- Wed Sep 25, 2024 2:57 pm
- Forum: CX16 General Chat
- Topic: Frustrations With These Forums
- Replies: 16
- Views: 1809
Re: Frustrations With These Forums
I think that everybody agrees upon the need for more and better documentation. Improvements have been made, and some more are being discussed on the Discord channel. The number of persons doing this in their spare time is low. If you want to give something back to the community, taking part in docum...
- Tue Sep 24, 2024 7:53 pm
- Forum: CX16 Hardware Support
- Topic: Bricked First-Run Board
- Replies: 4
- Views: 612
Re: Bricked First-Run Board
Understood. Either way, I’m willing to help if you go about recovering the SMC
- Tue Sep 24, 2024 12:50 am
- Forum: CX16 Hardware Support
- Topic: Bricked First-Run Board
- Replies: 4
- Views: 612
Re: Bricked First-Run Board
Sorry to hear that happen. If the SMC is bricked you can recover it yourself. But you need to have some device to program it with, for instance: - an Arduino Uno, https://github.com/X16Community/x16-smc/blob/main/doc/recovery-with-arduino.md or - a TLL866 series programmer If you have any of those, ...
- Thu Aug 22, 2024 4:42 am
- Forum: CX16 Hardware Support
- Topic: Mechanical keyboard recommendations
- Replies: 9
- Views: 1749
Re: Mechanical keyboard recommendations
EDIT: also - my IBM Model F (1981-1983) keyboard didn't work with the X16 (it's a very ancient and picky keyboard), but the IBM Model M's did work for me with a DIN to PS/2 adapter. i.e. look for IBM keyboards with the F-keys along the top (avoid the one with the F-keys at the left side). I think t...
- Sun Aug 04, 2024 2:26 pm
- Forum: Programming
- Topic: How to implement bareback interrupts?
- Replies: 18
- Views: 3532
Re: How to implement bareback interrupts?
As a side note:
is a common pattern in 6502 assembly when you need to disable interrupts but want to preserve the original state of the interrupt flag.
Code: Select all
php
sei
<do some work>
plp