Results 1 to 10 of 36

Thread: Pas2C64

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Quote Originally Posted by ?ëu?±o Mart??nez View Post
    Envy... I have my Pascal compiler project for Z-80 death right now, and I can't work on it now.
    Why can't you work on it? You just don't feel like it?

    cheers,
    Paul

  2. #2
    Quote Originally Posted by paul_nicholls View Post
    Why can't you work on it? You just don't feel like it?

    cheers,
    Paul
    I have a lot of open projects, and I don't know how to say "no" (so when somebody propose something I always say "yes" ), and I'm not in my best moment right now...
    No signature provided yet.

  3. #3
    Well, I have come up with a logo for my pas2c64 project:


    What do you guys think? I quite like it, but feel free to comment, I value your feedback

    cheers,
    Paul
    Last edited by paul_nicholls; 16-06-2011 at 01:48 AM.

  4. #4
    I'd prefer Pas2Atari800XE, but your logo looks good too

  5. #5
    Quote Originally Posted by mobilus View Post
    I'd prefer Pas2Atari800XE, but your logo looks good too
    haha! thanks mate

    cheers,
    Paul

  6. #6
    Neat! I have added a handy feature to pas2c64 - allowing pure 6502 assembly code procedure that I can call from the rest of the program!

    This is great for testing and extending pas2c64 without even adding new features and recompiling

    Here is an example:
    Code:
    procedure UpperCase; assembler;
    asm
      lda $d018
      and #253
      sta $d018
    end;
    
    procedure LowerCase; assembler;
    asm
      lda $d018
      ora #2
      sta $d018
    end;
    
    begin
      LowerCase;
      UpperCase;
    end.
    cheers,
    Paul

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •