Update and constant arrays
Pas 6502 » Devlog
Hi all, I've updated Pas6502 again.
- I fixed a bug where you could write to a const array!
- I've also added new types of constant arrays you can use.
As well as the standard fixed-size array, you can define a constant array just using its data, or using for-loop data now!!
The last one was the most difficult, but I got it working...very useful!
The for-loop variable is only defined in the loop and doesn't have to be defined anywhere else :)
// open array defined by it’s values
a2 : array of Word = (1,4,3,2,5,76,5,4,2,3);
// open array defined by a for-loop with an expression
screenOffset : array of Word = for y := 0 to SCREEN_HEIGHT - 1 do (y*40);
Files
pas6502.zip 1.7 MB
Apr 29, 2023
Get Pas 6502
Download NowName your own price
Pas 6502
Pascal cross-compiler for 6502 machines.
Status | In development |
Category | Tool |
Author | syntaxerrorsoftware |
Tags | atari, bbc-micro, Commodore 64, compiler, cross-compiler, pascal, utility |
More posts
- Commodore PET support added!52 days ago
- Apple II support added!! (and some fixes)53 days ago
- Bug fixes, IDE updates, improvements...58 days ago
- Find/replace dialog, goto code definitions and other improvements.70 days ago
- Improvements and bug fixes madeJun 16, 2024
- New download file (fragments.zip) and include.zip updateJun 07, 2024
- Art change for NES example...May 11, 2024
- Small changes and NES support!May 09, 2024
- New machine support and some fixes...Apr 19, 2024
- Updates, fixes, and C128 support addedMar 31, 2024
Leave a comment
Log in with itch.io to leave a comment.