Search found 981 matches
- Sun May 11, 2025 8:43 pm
- Forum: Programming
- Topic: Prog8 language and compiler topic
- Replies: 401
- Views: 899287
Prog8 version 11.3.2 has been released
Prog8 version 11.3.2 has been released: https://github.com/irmen/prog8/releases/tag/v11.3.2 Documentation: https://prog8.readthedocs.io/en/latest/ Contains 3 bug fixes: - allow bitwise operation between different types as long as they're the same size. (11.3.1 broke this) - various bugs around word-...
- Wed May 07, 2025 9:19 pm
- Forum: Programming
- Topic: Prog8 language and compiler topic
- Replies: 401
- Views: 899287
Re: Prog8 language and compiler topic
A problem was found in 11.3.1 that now fails to compile this: word x x &= $fff8 you can rewrite it as: x = x & $fff8 as word Or get the latest development compiler build from github, because the bug has been fixed there. The problem only occurs when you're doing bitwise operations on a signe...
- Thu May 01, 2025 9:26 pm
- Forum: Programming
- Topic: Prog8 language and compiler topic
- Replies: 401
- Views: 899287
Prog8 version 11.3.1 has been released
Prog8 version 11.3.1 has been released: https://github.com/irmen/prog8/releases/tag/v11.3.1 Documentation: https://prog8.readthedocs.io/en/latest/ This issue fixes 2 compilation/assembling problems on C64 / 6502 targets, and contains a couple of other improvements. - `goto array[idx]` now assembles ...
- Mon Apr 28, 2025 5:03 pm
- Forum: Works In-Progress Discussion
- Topic: Another World (Out of this World) port for the CX16
- Replies: 25
- Views: 39440
Re: Another World (Out of this World) port for the CX16
thanks for the update 

- Thu Apr 24, 2025 12:28 am
- Forum: Introductions
- Topic: Greetings from Brooklyn
- Replies: 2
- Views: 1612
Re: Greetings from Brooklyn
Hello welcome
Do you have a physical commander x16 machine? Very nice
It's not for everyone, but a lot of activity is also taking place in the Commander X16 Discord you might want to consider joining that too
Do you have a physical commander x16 machine? Very nice
It's not for everyone, but a lot of activity is also taking place in the Commander X16 Discord you might want to consider joining that too
- Wed Apr 23, 2025 12:35 am
- Forum: Programming
- Topic: Prog8 language and compiler topic
- Replies: 401
- Views: 899287
Prog8 version 11.3 has been released
Prog8 version 11.3 has been released: https://github.com/irmen/prog8/releases/tag/v11.3 Documentation: https://prog8.readthedocs.io/en/latest/ Most important new feature is the ability to create programs that run from ROM, using the new %option romable :!: edit : this release contains a bug for the ...
- Tue Apr 22, 2025 11:53 pm
- Forum: Introductions
- Topic: hello from Fort Smith
- Replies: 5
- Views: 1096
Re: hello from Fort Smith
Omg only now noticed my silly typo's
- Tue Apr 22, 2025 4:06 pm
- Forum: Introductions
- Topic: hello from Fort Smith
- Replies: 5
- Views: 1096
Re: hello from Fort Smith
Hi welcome
people are already using the X16 to connect to a BSS, but I am not sure if it can run a BSS itself?
people are already using the X16 to connect to a BSS, but I am not sure if it can run a BSS itself?
- Sat Apr 19, 2025 7:13 pm
- Forum: Games
- Topic: Rock Runner
- Replies: 20
- Views: 35676
Rock Runner 1.3
I've uploaded a new version 1.3 of Rock Runner in the opening post.
The menus have been improved and a bug that corrupted the high score table was fixed.
The menus have been improved and a bug that corrupted the high score table was fixed.
- Wed Apr 16, 2025 3:59 pm
- Forum: Libraries and Examples
- Topic: Convert 16-bit address to banked ram address (and back)
- Replies: 2
- Views: 1206
Re: Convert 16-bit address to banked ram address (and back)
clever use of BIT