Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - moiree

Pages: [1]
1
Herdware / Re: Defective VIC?
« on: May 05, 2012, 06:14 AM »
Have you tried another display? Other than that, the RF modulator is used to amplify the video signal of the VIC2e, so the error might be there.
M.f.G. - Best Regards.

2
Herdware / Re: C128 keyboard mapping
« on: May 05, 2012, 06:08 AM »
What are you looking for exactly? The images you attached look to me like a
mapping of keyboard scan codes to the keys on an Amiga keyboard. The Amiga
keyboard has it's own microcontroller (MOS6509 IIRC) which sends the scan codes
over a serial connection to the Amiga.
The C128 keyboard is attached over a parallel connection to the CIA#1 on the
C128 main board. As can be seen in the
Commodore 128 Programmer's Reference Guide on page 642, the keyboard does
not send keycodes, but you need to read the bits of the CIA's data port and the
VIC2e.  You could use the kernal's keyboard scan routine at $FF9F though, to
save you the hassle (see page 421 of the aforementioned book).

3
Commodore 64 hardware / Re: c64 cassette write line
« on: April 30, 2012, 12:24 PM »
I just measured this:
Code: [Select]
poke 1, peek(1) and 247 reads 0 volts.
Code: [Select]
poke 1, peek(1) or 8 reads 2.75 volts.

4
CP/M / Re: Tron-game with graphics on CP/M 80 column
« on: March 18, 2012, 09:52 AM »
Can you please write a simple test program, that measures the time it takes to count some loops, fill the screen or similar and post it with the values from the real machine to the vice bugtracker?

5
CP/M / Re: Tron-game with graphics on CP/M 80 column
« on: March 18, 2012, 05:13 AM »
I would have attached a current WinVice version, but it is 11MB big.

6
Yes, they disabled anonymous submissions, because of SPAM. So, create a sourceforge account and submit your feature request.

7
The right place to post your feature request would probably be the VICE feature request tracker on sourceforge.

8
- The competition starts Saturday October 29th 2011 at 5pm EST (Australian, not US)
- Entries must be submitted on or before April 1st, 2012

Anybody programming already?

10
BASIC / Re: converting BASIC 7 programs to ascii text files?
« on: January 17, 2011, 12:39 PM »
If you have list of tokens/keywords, you could add them to petcat yourself. The source is free. Even more, some people would thank you very much :)

11
BASIC / Re: converting BASIC 7 programs to ascii text files?
« on: January 16, 2011, 12:05 PM »
This is what petcat can (de-)tokenize:
Code: [Select]
        Versions:
        1       PET Basic V1.0
        2       Basic v2.0
        superexp        Basic v2.0 with Super Expander (VIC20)
        turtle  Basic v2.0 with Turtle Basic by Craig Bruce (VIC20)
        mighty  Basic v2.0 with Mighty Basic by Craig Bruce (VIC20)
        a       Basic v2.0 with AtBasic (C64)
        simon   Basic v2.0 with Simon's Basic extension (C64)
        speech  Basic v2.0 with Speech Basic v2.7 (C64)
        F       Basic v2.0 with Final Cartridge III (C64)
        ultra   Basic v2.0 with Ultrabasic-64 (C64)
        graph   Basic v2.0 with Graphics basic (C64)
        WSB     Basic v2.0 with WS basic (C64)
        WSBF    Basic v2.0 with WS basic final (C64)
        Pegasus Basic v2.0 with Pegasus basic 4.0 (C64)
        Xbasic  Basic v2.0 with Xbasic (C64)
        Drago   Basic v2.0 with Drago basic 2.2 (C64)
        REU     Basic v2.0 with REU-basic (C64)
        Lightning       Basic v2.0 with Basic Lightning (C64)
        magic   Basic v2.0 with Magic Basic (C64)
        easy    Basic v2.0 with Easy Basic (VIC20)
        blarg   Basic v2.0 with Blarg (C64)
        Game    Basic v2.0 with Game Basic (C64)
        BSX     Basic v2.0 with Basex (C64)
        superbas        Basic v2.0 with Super Basic (C64)
        exp20   Basic 2.0 with Expanded Basic (VIC20)
        exp64   Basic 2.0 with Expanded Basic (C64)
        sxc     Basic 2.0 with Super Expander Chip (C64)
        warsaw  Basic 2.0 with Warsaw Basic (C64)
        4v      Basic 2.0 with Basic 4.0 extensions (VIC20)
        4 -w4e  PET Basic v4.0 program (PET/C64)
        5       Basic 2.0 with Basic 5.0 extensions (VIC20)
        3       Basic v3.5 program (C16)
        70      Basic v7.0 program (C128)
        71      Basic v7.1 program (C128)
        10      Basic v10.0 program (C64DX)

12
BASIC / Re: converting BASIC 7 programs to ascii text files?
« on: January 15, 2011, 10:19 AM »
You could use petcat, which is included in VICE.

Call it from a shell with
petcat -o destination_filename.bas source_filename

Voilá.

Pages: [1]


Back to top