P65Pas icon indicating copy to clipboard operation
P65Pas copied to clipboard

CPU 6502 Pascal Compiler/IDE/Debugger

Results 10 P65Pas issues
Sort by recently updated
recently updated
newest added

The snipet is this: ```Delphi var r0: word absolute $02; r1: word absolute $04; r2: word absolute $06; ... procedure Copy; var Src: word absolute $02; // this declarations are...

I have a function that is called like that: ```Delphi procedure FillChar(Dest: word; Count: byte registerY; Value: byte registerA); begin ... end; ... FillChar($2000, 20, 10); ``` The code generated...

```Delphi program NewProgram; uses Commodore64; var p : ^byte; bt: byte; begin p := @bt; p^ := $01; end. ``` This program gives an error: newfile1[9,5] Error: Index must be...

Hi, love the project. Can you please add support for Mega65? It uses a 45GS02, so there are some more opcodes. https://files.mega65.org/manuals-upload/mega65-book.pdf the processor and instruction set is described in...

```delphi program HelloInterrupt; uses Commodore64; var IRGVEC: pointer absolute $0314; SCREENPOS1: byte absolute $0400; procedure disableInterrupts; {Macro?} begin asm sei ; disable interrupts end end; procedure enableInterrupts; {Macro?} begin asm...

Really? I was hoping to see a new version to try, Now I am considering either switching to MAD Pascal or switch to another language entierly (Not a problem for...

One can still define objects. But it seems it is no longer possible to assign values to them?

Hi! Mr. Tito, I have problems to send You a donation. ![imagen](https://github.com/t-edson/P65Pas/assets/25032803/f0c092ef-be72-4d6f-826b-33e2f48a957d) Is there other way to bring You some "help"? I like the enhancements that the P65Pas have now!...

Hi Mr. Tito: I want to try to adapt the p65pas compiler to generate code that run on the neo6502 and its emulator. https://neo6502.com/ Do you have any advice you...

When I attempt to build this on macOS I get: Compile Project, Mode: Debug, Target: /Users/fredrickkohler/Documents/Dev/Lazarus/P65Pas/P65Pas-darwin: Exit code 1, Errors: 1 CodeTools6502.pas(8,18) Error: Cannot find XpresElemP65 used by CodeTools6502 of...