|
Joined: Feb 2014
Posts: 1,102 Likes: 173
Very Senior Member
|
Very Senior Member
Joined: Feb 2014
Posts: 1,102 Likes: 173 |
I was trying to get Cyclod running with the sirius joyport, but for some reason I couldn't get it to select the joyport. Supposedly you enable the atari joystick with CTRL+SHIFT+P (which is actually CTRL+@). CTRL+P will enable the normal apple joystick. Sirius freefall and snakebyte wants CTRL+SHIFT+P too: https://archive.org/details/Cyclod/page/n1https://archive.org/details/1982-sirius-freefall/page/n1https://archive.org/details/sirius_snakebyte_manual/page/n1This puzzled me because none of these seem to work. So let's start digging: I looked at the code inside cyclod for reading the joyport and sure enough, it's got code that hits c05a and c05b
>find 0,bfff,5a,c0
Found at 869D
Found at 882B
Found at 8CB5
[MAME]>
>find 0,bfff,5b,c0
Found at 86BE
[MAME]>
and there's a joyport reading routine at 8699, but why doesn't it get called? let's watch what is actually reading from the keyboard and that leads us to the code where it reads the keyboard:
wp c000,1,r,1,{printf "keyboard read: pc=%x wpaddr=%x wpdata=%x ",pc,wpaddr,wpdata;g}
7398: AD 00 C0 lda KBD / 80STOREOFF
739B: 8D 27 70 sta $7027
739E: AD 10 C0 lda KBDSTRB
73A1: AD 5E 70 lda $705e
73A4: C9 01 cmp #$01
73A6: F0 06 beq $73ae
73A8: 20 99 86 jsr $8699 so our joyport routine will get called if there isn't a 1 in 705e we can find these routines by looking for where 7027 and 705e get accessed:
>find 0,bfff,5e,70
>find 0,bfff,27,70
8D7D: AD 27 70 lda $7027 keycode gets put here
8D80: C9 8B cmp #$8b 8b = CTRL+K keyboard
8D82: D0 09 bne $8d8d
8D84: A9 00 lda #$00 puts 00 in 705e
8D86: 8D 5E 70 sta $705e
8D89: 20 BC 82 jsr $82bc calls some other stuff
8D8C: 60 rts
8D8D: C9 90 cmp #$90 90 = CTRL+P joystick
8D8F: D0 09 bne $8d9a
8D91: A9 01 lda #$01 puts 01 in 705e
8D93: 8D 5E 70 sta $705e
8D96: 20 84 7D jsr $7d84
8D99: 60 rts
8D9A: C9 80 cmp #$80 80 = CTRL+shift+p or CTRL+@
8D9C: D0 08 bne $8da6
8D9E: A9 02 lda #$02 puts 02 in 705e
8DA0: 8D 5E 70 sta $705e
8DA3: 20 E6 76 jsr $76e6
8DA6: 60 rts
very similar routines to those above reading CTRL+k,CTRL+P,CTRL+@
8DA7: AD 27 70 lda $7027
8DAA: C9 8B cmp #$8b
8DAC: D0 06 bne $8db4
8DAE: A9 00 lda #$00
8DB0: 8D 5E 70 sta $705e
8DB3: 60 rts
8DB4: C9 90 cmp #$90
8DB6: D0 06 bne $8dbe
8DB8: A9 01 lda #$01
8DBA: 8D 5E 70 sta $705e
8DBD: 60 rts
8DBE: C9 80 cmp #$80
8DC0: D0 05 bne $8dc7
8DC2: A9 02 lda #$02
8DC4: 8D 5E 70 sta $705e
8DC7: 60 rts so the code is there but it's looking for a keycode of 0x80, but we're not getting it. Looking at the key table in src/mame/drivers/apple2.c we can fix the table to send a 0x00 code: static const uint8_t a2_key_remap[0x32][4] =
{
/* norm shft ctrl both */
{ 0x33,0x23,0x33,0x23 }, /* 3 # 00 */
{ 0x34,0x24,0x34,0x24 }, /* 4 $ 01 */
{ 0x35,0x25,0x35,0x25 }, /* 5 % 02 */
...
{ 0x55,0x55,0x15,0x15 }, /* u U 10 */
{ 0x49,0x49,0x09,0x09 }, /* i I 11 */
{ 0x4f,0x4f,0x0f,0x0f }, /* o O 12 */
{ 0x50,0x40,0x10,0x00 }, /* p P 13 */ //should be a 0x00 for a CTRL_SHIFT_P
{ 0x44,0x44,0x04,0x04 }, /* d D 14 */
{ 0x46,0x46,0x06,0x06 }, /* f F 15 */
{ 0x47,0x47,0x07,0x07 }, /* g G 16 */
{ 0x48,0x48,0x08,0x08 }, /* h H 17 */
{ 0x4a,0x4a,0x0a,0x0a }, /* j J
but we still don't get an 0x80 code because of an if statement in ay3600_data_ready_w that checks to see if our translated character is zero: commenting that out we now get the 0x80 code when we read $c000! Yay!
WRITE_LINE_MEMBER(apple2_state::ay3600_data_ready_w)
{
if (state == ASSERT_LINE)
{
int mod = 0;
m_lastchar = m_ay3600->b_r();
mod = (m_kbspecial->read() & 0x06) ? 0x01 : 0x00;
mod |= (m_kbspecial->read() & 0x08) ? 0x02 : 0x00;
m_transchar = a2_key_remap[m_lastchar&0x3f][mod];
// if (m_transchar != 0)
{
m_strobe = 0x80;
// printf("new char = %04x (%02x)\n", m_lastchar&0x3f, m_transchar);
}
}
}
|
|
|
Entire Thread
|
8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
11/29/16 08:27 PM
|
Re: 8bit Apples - Apple I, II, /// and GS
|
R. Belmont
|
11/29/16 08:35 PM
|
Re: 8bit Apples - Apple I, II, /// and GS
|
rfka01
|
11/29/16 08:42 PM
|
Re: 8bit Apples - Apple I, II, /// and GS
|
robcfg
|
11/29/16 09:04 PM
|
Re: 8bit Apples - Apple I, II, /// and GS
|
rfka01
|
11/29/16 09:16 PM
|
Re: 8bit Apples - Apple I, II, /// and GS
|
robcfg
|
11/29/16 10:53 PM
|
Re: 8bit Apples - Apple I, II, /// and GS
|
rfka01
|
11/29/16 11:02 PM
|
Re: 8bit Apples - Apple I, II, /// and GS
|
rfka01
|
03/02/17 06:30 PM
|
Re: 8bit Apples - Apple I, II, /// and GS
|
R. Belmont
|
03/02/17 07:18 PM
|
Konan David Jr II
|
rfka01
|
05/01/17 06:19 PM
|
Re: 8bit Apples - Apple I, II, /// and GS
|
R. Belmont
|
05/11/17 01:25 PM
|
Re: 8bit Apples - Apple I, II, /// and GS
|
Golden Child
|
05/14/17 10:32 AM
|
Re: 8bit Apples - Apple I, II, /// and GS
|
R. Belmont
|
05/14/17 04:10 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
08/21/17 05:50 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/21/17 06:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
08/23/17 11:50 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/24/17 06:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
08/24/17 10:51 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/25/17 01:38 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
09/01/17 02:01 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/25/17 01:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/25/17 03:27 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
08/25/17 06:55 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/26/17 12:35 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/27/17 11:55 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/01/17 12:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
09/12/17 11:47 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
09/01/17 05:52 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
10/15/17 08:12 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/06/17 08:12 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
09/06/17 08:23 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/06/17 12:09 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/06/17 03:49 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/06/17 04:23 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
anikom15
|
09/06/17 04:37 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/06/17 05:07 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
09/07/17 09:31 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/07/17 12:58 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/07/17 04:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/14/17 07:50 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/11/17 10:01 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/11/17 12:13 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/12/17 01:57 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Pernod
|
09/12/17 02:02 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/12/17 04:03 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/12/17 02:15 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/12/17 11:54 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/14/17 08:47 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/14/17 10:54 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/23/17 08:33 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
seanriddle
|
09/23/17 10:30 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/24/17 01:22 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/24/17 01:03 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/24/17 02:08 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
09/24/17 02:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/24/17 03:53 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/24/17 06:08 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/26/17 12:33 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/26/17 10:33 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
crazyc
|
09/27/17 12:13 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/27/17 03:37 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/27/17 05:01 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/27/17 07:47 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/28/17 05:19 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/17/17 06:06 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
crazyc
|
10/17/17 06:17 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/18/17 03:41 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/18/17 02:42 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/04/17 11:56 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/25/17 12:00 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
09/29/17 09:59 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/30/17 10:13 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/02/17 07:51 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
09/25/17 01:54 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/26/17 11:55 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/27/17 03:29 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/28/17 06:21 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/29/17 04:03 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/29/17 07:13 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/02/17 12:34 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/02/17 12:59 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Al Kossow
|
10/03/17 03:21 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/02/17 02:55 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/03/17 02:02 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/03/17 04:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/03/17 02:35 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
10/04/17 01:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Just Desserts
|
10/04/17 01:42 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/09/17 01:16 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
10/04/17 02:11 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/04/17 05:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/09/17 11:58 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
10/10/17 02:20 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/10/17 12:48 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Haze
|
10/09/17 01:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/09/17 01:43 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
10/10/17 02:09 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Justin
|
10/10/17 04:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/10/17 05:59 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/12/17 12:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/12/17 02:28 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/12/17 05:01 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/12/17 06:12 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
crazyc
|
10/12/17 11:02 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
crazyc
|
10/18/17 03:02 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/18/17 07:53 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/19/17 08:17 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/25/17 02:40 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/05/17 04:58 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
11/01/17 12:02 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
crazyc
|
11/05/17 06:11 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/06/17 01:16 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/07/17 08:55 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/11/17 01:04 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/22/17 02:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
crazyc
|
11/06/17 11:12 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
crazyc
|
11/22/17 02:28 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/22/17 02:48 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/22/17 02:59 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/25/17 06:00 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/25/17 06:54 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/26/17 10:18 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
12/04/17 12:29 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
crazyc
|
11/22/17 03:06 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/22/17 03:22 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
11/23/17 05:23 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/23/17 08:21 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
crazyc
|
11/22/17 03:56 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/22/17 04:12 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/22/17 10:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/23/17 09:29 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/24/17 09:29 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
shattered
|
03/13/18 02:26 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
04/23/18 08:59 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
shattered
|
04/25/18 06:17 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
shattered
|
06/04/18 08:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
shattered
|
04/28/18 06:45 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
03/13/18 02:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
04/11/18 11:04 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Pernod
|
04/11/18 02:18 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/23/18 03:26 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/23/18 11:49 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
04/23/18 07:32 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/23/18 07:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
04/23/18 08:54 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/23/18 11:55 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/24/18 04:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/25/18 12:58 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/26/18 02:49 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
06/05/18 06:17 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
shattered
|
06/05/18 07:36 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
shattered
|
06/07/18 10:16 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
06/08/18 01:14 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
shattered
|
06/17/18 12:06 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
shattered
|
06/10/18 09:51 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
06/12/18 06:36 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
06/12/18 08:46 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
06/12/18 09:01 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
06/19/18 05:36 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
shattered
|
08/01/18 07:28 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/21/18 12:16 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Haze
|
07/21/18 04:13 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/21/18 12:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
07/31/18 09:07 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Lord Nightmare
|
08/01/18 08:32 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
08/01/18 09:40 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/01/18 11:26 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
08/03/18 10:02 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/03/18 11:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
08/04/18 10:32 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
08/05/18 12:16 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/05/18 02:04 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
08/05/18 02:29 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Kaylee
|
08/10/18 05:17 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Just Desserts
|
08/10/18 06:07 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
08/19/18 12:44 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
08/21/18 01:30 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Just Desserts
|
08/21/18 02:28 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
08/23/18 04:42 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
08/31/18 01:43 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/31/18 03:32 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
08/31/18 06:58 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Haze
|
09/01/18 12:56 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
09/02/18 04:04 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Darkstar
|
09/02/18 08:54 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Haze
|
09/03/18 01:32 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
09/04/18 02:38 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Alegend45
|
08/21/18 02:33 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/21/18 02:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
shattered
|
08/23/18 08:42 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Haze
|
08/25/18 01:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
08/27/18 09:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/28/18 12:19 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Robbbert
|
08/31/18 03:23 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
08/31/18 07:20 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/03/18 02:59 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
09/03/18 06:29 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
09/04/18 08:53 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
09/04/18 03:54 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/04/18 05:36 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
09/06/18 06:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
10/29/18 02:51 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Lord Nightmare
|
10/29/18 05:07 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
10/29/18 05:56 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
10/29/18 01:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Lord Nightmare
|
10/29/18 01:49 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
10/29/18 02:03 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
ICEknight
|
09/05/18 12:34 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/06/18 06:51 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
09/14/18 09:15 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
10/29/18 10:07 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Anon01
|
11/03/18 06:19 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
12/04/18 11:53 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
12/04/18 12:35 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
12/04/18 10:49 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
12/06/18 11:45 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
12/22/18 03:10 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
12/30/18 01:21 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
12/30/18 05:22 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
01/01/19 12:03 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
01/01/19 12:17 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/09/19 03:40 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/14/19 10:19 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
01/09/19 04:01 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
01/09/19 04:51 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/09/19 05:33 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
01/09/19 05:59 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
01/09/19 12:37 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Spk
|
01/12/19 03:39 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/14/19 02:42 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
01/14/19 03:37 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Spk
|
01/14/19 09:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
01/30/19 04:00 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
AJR
|
01/30/19 05:00 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
01/30/19 03:17 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/30/19 07:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
01/30/19 07:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/31/19 02:59 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
01/30/19 09:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/31/19 03:07 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/31/19 09:03 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/31/19 02:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/01/19 05:28 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/02/19 01:58 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
01/31/19 09:30 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
01/31/19 09:46 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/02/19 06:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/02/19 11:22 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/03/19 10:35 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
shattered
|
02/03/19 11:01 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/15/19 08:22 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/15/19 09:40 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/16/19 12:06 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/16/19 12:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/16/19 08:33 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
anoid
|
02/16/19 10:35 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/17/19 03:45 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/17/19 04:11 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/17/19 12:22 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/17/19 01:14 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
anoid
|
02/17/19 01:44 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/17/19 02:17 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
anoid
|
02/17/19 05:03 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/17/19 06:10 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/17/19 07:48 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
02/17/19 11:51 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
anoid
|
02/18/19 12:12 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/18/19 12:23 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
02/18/19 12:25 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
02/18/19 12:30 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/23/19 01:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
02/23/19 05:03 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/23/19 07:15 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
02/25/19 04:49 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Carbon
|
02/23/19 08:08 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/23/19 08:33 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Carbon
|
02/24/19 08:28 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
02/26/19 05:19 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/26/19 05:34 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
03/03/19 12:45 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
03/03/19 01:55 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
03/03/19 12:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
03/03/19 09:29 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
03/04/19 04:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
anoid
|
03/04/19 04:56 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
03/04/19 02:35 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
03/05/19 08:30 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
03/14/19 05:08 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
03/15/19 07:58 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
03/24/19 12:30 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
03/24/19 07:26 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
03/25/19 11:56 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
03/27/19 02:49 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Lord Nightmare
|
03/24/19 07:52 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
03/25/19 11:42 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
03/29/19 03:28 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
03/29/19 03:42 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Duke
|
03/29/19 08:22 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/02/19 01:59 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/04/19 12:06 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/07/19 11:35 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/08/19 04:03 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/08/19 06:05 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
04/10/19 07:09 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/10/19 10:59 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Lord Nightmare
|
04/10/19 10:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
04/11/19 07:53 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/13/19 08:35 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/13/19 09:51 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/13/19 11:53 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/14/19 10:45 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Haze
|
04/14/19 11:06 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/14/19 02:22 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robcfg
|
04/14/19 04:51 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Pernod
|
04/16/19 06:52 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/14/19 05:33 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/14/19 07:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/14/19 08:42 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/15/19 01:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/16/19 06:07 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robcfg
|
04/16/19 07:57 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Haze
|
04/16/19 09:09 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/16/19 08:49 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/16/19 09:20 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/17/19 08:13 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/18/19 01:00 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/18/19 01:10 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/20/19 04:36 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/20/19 01:28 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/21/19 09:41 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/21/19 04:11 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/22/19 03:30 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/21/19 11:43 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/22/19 11:52 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/24/19 10:48 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
anoid
|
04/23/19 03:20 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
04/24/19 04:43 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/23/19 08:18 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
anoid
|
04/23/19 09:46 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/24/19 11:04 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/24/19 11:20 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/24/19 05:01 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/25/19 04:51 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/26/19 07:33 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/27/19 06:52 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Pernod
|
04/27/19 07:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/10/19 12:11 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Pernod
|
08/10/19 02:20 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/27/19 08:18 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/28/19 12:22 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/28/19 11:41 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/28/19 03:28 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robcfg
|
04/28/19 07:15 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/28/19 04:36 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/29/19 01:51 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/29/19 02:28 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/30/19 02:45 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/02/19 03:11 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/05/19 03:34 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/09/19 02:47 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
05/03/19 05:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/03/19 06:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
05/03/19 07:21 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/09/19 05:40 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/10/19 12:08 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/10/19 12:45 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/10/19 02:55 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/10/19 05:49 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/10/19 07:23 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/10/19 10:08 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/11/19 08:02 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/12/19 01:39 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/12/19 11:55 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/12/19 09:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/13/19 02:17 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Spk
|
05/11/19 05:51 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/11/19 10:58 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Spk
|
05/12/19 07:21 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/12/19 11:17 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/13/19 02:33 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/13/19 02:37 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/13/19 03:27 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/13/19 01:36 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/28/19 06:02 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/30/19 03:15 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/30/19 03:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/13/19 02:27 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
05/13/19 04:35 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Spk
|
05/23/19 08:20 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/23/19 11:59 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/30/19 05:46 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/31/19 01:33 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/31/19 02:33 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Just Desserts
|
05/31/19 03:07 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/31/19 05:57 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
06/02/19 02:33 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
06/23/19 11:51 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/04/19 11:12 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/05/19 01:43 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Spk
|
06/01/19 08:47 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
06/01/19 11:41 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Spk
|
06/01/19 09:18 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
06/01/19 09:19 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Firehawke
|
06/01/19 10:01 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
06/02/19 03:37 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
06/01/19 11:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Firehawke
|
06/09/19 01:21 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
06/23/19 12:11 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
06/23/19 05:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/05/19 01:54 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/05/19 03:18 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/06/19 05:07 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/08/19 09:51 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/08/19 05:35 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/08/19 06:21 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/08/19 07:58 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/08/19 10:53 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/09/19 02:58 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Pernod
|
08/10/19 10:53 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/09/19 04:02 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Duke
|
08/09/19 10:24 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Spk
|
08/10/19 01:13 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/10/19 02:07 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/10/19 10:57 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/10/19 11:23 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
08/10/19 11:35 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/10/19 11:45 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
08/10/19 04:59 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/10/19 05:17 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Darkstar
|
08/10/19 07:49 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Olivier Galibert
|
08/10/19 07:53 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Darkstar
|
08/10/19 11:35 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/11/19 04:01 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
08/10/19 05:28 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Pernod
|
08/10/19 06:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/10/19 06:09 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/10/19 08:12 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
08/10/19 08:49 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/11/19 04:26 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/11/19 08:10 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/11/19 08:45 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/11/19 09:45 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/11/19 11:22 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/12/19 01:08 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/13/19 05:34 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/14/19 09:08 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/15/19 01:27 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/15/19 04:20 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/20/19 03:43 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/21/19 02:47 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/27/19 08:17 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/13/19 05:36 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/14/19 02:50 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Spk
|
08/14/19 03:06 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/25/19 09:32 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
08/27/19 06:13 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/27/19 08:53 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/27/19 09:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/28/19 01:07 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/29/19 03:38 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/01/19 11:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/02/19 12:34 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/06/19 09:03 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/06/19 09:50 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/06/19 10:23 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/07/19 01:54 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/07/19 02:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/07/19 04:39 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/07/19 05:46 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Happy
|
09/07/19 08:00 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/08/19 01:03 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/08/19 01:28 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/08/19 05:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/09/19 09:32 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/09/19 11:40 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/10/19 04:48 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/11/19 02:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/11/19 06:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/13/19 04:44 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/13/19 04:10 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/15/19 07:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Lord Nightmare
|
09/09/19 03:35 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/09/19 03:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Happy
|
09/09/19 05:16 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Lord Nightmare
|
09/09/19 07:09 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/09/19 07:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
09/15/19 04:51 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/15/19 05:42 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
09/15/19 05:50 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
09/15/19 07:00 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/15/19 07:19 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/15/19 08:04 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
09/25/19 11:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/25/19 11:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
09/26/19 03:31 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
09/26/19 04:27 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/30/19 04:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
10/05/19 10:47 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/30/19 11:46 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/01/19 09:37 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/05/19 12:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/01/19 05:34 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
05/31/20 11:22 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
11/02/19 12:50 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
11/02/19 02:41 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
11/02/19 09:29 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/02/19 09:53 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/03/19 11:11 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
02/18/20 01:18 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
02/18/20 05:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/18/20 06:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
02/18/20 07:04 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/18/20 07:42 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
02/18/20 08:16 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/19/20 03:18 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
02/19/20 07:05 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/19/20 12:58 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Tafoid
|
02/19/20 01:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
02/19/20 01:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/19/20 01:47 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/20/20 03:12 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
02/20/20 08:02 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
03/08/20 04:31 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/26/20 06:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
hap
|
04/26/20 07:20 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/26/20 07:29 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/27/20 08:37 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/27/20 11:41 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
06/01/20 03:31 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
06/01/20 10:50 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
06/27/20 04:17 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
06/01/20 11:48 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
06/27/20 04:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
06/27/20 06:04 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
06/27/20 06:32 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Just Desserts
|
06/27/20 08:19 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Just Desserts
|
06/28/20 09:01 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
06/30/20 02:09 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
06/30/20 01:51 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
07/01/20 01:53 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/01/20 02:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
07/11/20 10:04 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/11/20 11:52 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
07/11/20 07:32 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/11/20 08:04 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
07/11/20 08:42 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
07/12/20 03:23 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/12/20 05:04 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
AJR
|
07/12/20 05:48 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
07/13/20 11:26 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
07/13/20 09:32 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/02/20 10:40 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/16/20 07:02 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/23/20 03:54 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
JeanPhi
|
08/24/20 02:18 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/24/20 02:30 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/24/20 02:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
JeanPhi
|
08/24/20 03:04 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/24/20 04:00 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
JeanPhi
|
08/24/20 04:06 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/24/20 06:21 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
JeanPhi
|
08/25/20 01:55 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/25/20 02:39 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
09/04/20 12:33 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/07/20 04:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/23/20 03:13 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/23/20 03:34 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/23/20 03:39 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/23/20 04:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/23/20 04:36 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
10/23/20 04:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/23/20 05:17 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
10/23/20 04:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/23/20 07:43 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
10/24/20 12:33 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/24/20 10:21 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
10/24/20 10:22 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/24/20 11:19 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/24/20 03:33 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/24/20 04:49 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
10/24/20 05:03 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
10/24/20 05:49 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/28/20 04:01 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/29/20 02:10 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
11/10/20 08:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/11/20 07:39 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
10/31/20 01:45 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/10/20 02:47 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/31/20 05:16 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
11/08/20 06:32 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
11/11/20 09:06 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/11/20 11:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/14/20 03:02 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
11/14/20 03:23 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/14/20 05:40 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
11/14/20 02:23 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/14/20 03:51 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
11/14/20 04:27 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/14/20 07:00 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/14/20 11:21 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
11/15/20 12:21 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
11/15/20 02:56 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/15/20 11:03 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
11/15/20 12:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/15/20 03:08 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
11/15/20 03:46 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/15/20 06:11 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
11/16/20 04:29 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/23/20 05:37 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
12/05/20 01:35 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
AJR
|
12/27/20 07:19 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
12/27/20 07:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
12/27/20 11:48 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
12/28/20 12:36 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
12/28/20 12:51 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
12/28/20 08:18 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
12/28/20 09:06 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
12/28/20 11:36 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
01/01/21 10:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
01/06/21 10:43 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
01/06/21 01:16 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/06/21 11:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
01/07/21 02:13 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
01/07/21 02:50 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
01/07/21 03:08 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/07/21 03:24 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
01/07/21 04:19 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
01/09/21 04:18 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
01/10/21 07:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/10/21 09:35 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
01/10/21 10:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/10/21 10:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
01/10/21 11:25 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/11/21 01:49 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/11/21 05:11 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/12/21 10:31 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Darkstar
|
01/12/21 05:34 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/12/21 09:10 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/13/21 01:19 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
01/13/21 08:33 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/02/21 05:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/02/21 06:01 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/03/21 07:59 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/03/21 03:37 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/06/21 10:46 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/09/21 03:02 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Tim Stark
|
02/16/21 03:57 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Olivier Galibert
|
02/16/21 04:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit
|
Vas Crabb
|
04/03/21 06:57 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit
|
Golden Child
|
04/04/21 04:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit
|
Golden Child
|
04/04/21 06:26 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit
|
Golden Child
|
04/06/21 03:59 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/06/21 05:33 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/06/21 06:42 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/06/21 06:46 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/06/21 07:05 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/06/21 09:16 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/06/21 10:45 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/06/21 12:07 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/06/21 01:28 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Lord Nightmare
|
04/07/21 07:57 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/20/21 09:12 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/06/21 11:34 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/06/21 01:17 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/06/21 02:06 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/06/21 02:28 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/06/21 11:32 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/06/21 06:38 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/06/21 10:54 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/07/21 01:29 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/07/21 04:27 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/07/21 04:38 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
hap
|
04/07/21 10:14 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
04/08/21 05:32 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/08/21 01:13 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/08/21 01:37 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
04/08/21 01:56 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
04/18/21 01:55 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/03/21 01:36 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Pernod
|
05/03/21 05:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Pernod
|
05/09/21 11:36 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/03/21 01:22 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
07/06/21 08:53 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/03/21 01:42 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Olivier Galibert
|
05/03/21 06:03 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/06/21 03:11 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/06/21 06:07 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/06/21 03:09 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/06/21 03:53 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/08/21 01:41 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/09/21 11:42 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/09/21 11:13 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/10/21 10:15 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
05/30/21 12:15 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/30/21 01:17 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
05/30/21 03:41 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Olivier Galibert
|
05/30/21 02:23 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
robj
|
05/30/21 11:19 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
07/07/21 06:46 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
05/30/21 11:36 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
MrBogi
|
05/30/21 12:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
06/24/21 09:13 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
06/25/21 01:46 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
06/25/21 01:47 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
paulhagstrom
|
07/18/21 11:27 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/18/21 11:30 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/18/21 11:54 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
paulhagstrom
|
07/19/21 12:46 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/19/21 02:00 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
paulhagstrom
|
07/19/21 03:07 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/25/21 12:11 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Just Desserts
|
07/25/21 04:25 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Darkstar
|
07/25/21 08:44 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/25/21 12:01 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Haze
|
07/25/21 12:39 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Just Desserts
|
07/25/21 02:50 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
MrBogi
|
07/25/21 04:09 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/28/21 05:59 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Just Desserts
|
07/28/21 06:43 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/28/21 07:18 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Olivier Galibert
|
07/28/21 09:21 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/02/21 11:29 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Olivier Galibert
|
08/03/21 07:47 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/03/21 11:29 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Olivier Galibert
|
08/03/21 12:43 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/04/21 02:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/05/21 10:30 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/10/21 04:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Just Desserts
|
08/10/21 04:57 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/10/21 07:28 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/10/21 07:47 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/10/21 08:26 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/11/21 01:49 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/18/21 03:54 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/18/21 04:50 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/21/21 05:56 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/21/21 12:17 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/21/21 01:18 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/21/21 01:26 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/22/21 02:40 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/22/21 06:17 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/22/21 11:11 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/22/21 11:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/23/21 12:28 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/23/21 01:06 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/23/21 04:51 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/26/21 03:14 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/27/21 01:52 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/27/21 04:23 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/30/21 10:35 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/30/21 06:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
08/30/21 06:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
08/30/21 11:05 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/05/21 07:47 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/11/21 11:48 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/16/21 12:32 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/16/21 03:40 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
09/19/21 02:29 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/01/21 02:30 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
10/02/21 05:01 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/05/21 03:50 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/05/21 01:44 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/05/21 06:17 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/05/21 01:55 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/05/21 07:22 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/08/21 03:39 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/08/21 11:19 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/08/21 11:40 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/09/21 01:22 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Duke
|
10/30/21 10:39 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
11/01/21 01:23 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/05/21 06:27 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
11/05/21 06:30 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/05/21 06:34 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/07/21 04:32 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/08/21 01:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
peter ferrie
|
11/17/21 02:53 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
11/17/21 09:12 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
rfka01
|
12/09/21 06:15 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/27/22 08:15 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
10/27/22 08:24 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
10/29/22 04:25 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Firewave
|
11/03/22 11:00 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
AJR
|
02/01/23 03:46 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/01/23 03:52 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/01/23 07:41 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/01/23 08:21 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/01/23 09:14 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
02/01/23 11:50 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/02/23 12:57 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/02/23 02:45 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
02/03/23 02:18 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
AJR
|
02/16/23 02:56 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
06/12/23 03:31 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
06/12/23 05:57 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
07/10/23 04:23 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
R. Belmont
|
07/10/23 11:40 AM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Vas Crabb
|
07/10/23 04:48 PM
|
Re: 8bit Apples - Apple I, II, /// and the 16 bit GS
|
Golden Child
|
07/10/23 11:24 PM
|
|
1 members (1 invisible),
300
guests, and
2
robots. |
Key:
Admin,
Global Mod,
Mod
|
|
Forums9
Topics9,320
Posts121,942
Members5,074
|
Most Online1,283 Dec 21st, 2022
|
|
These forums are sponsored by Superior Solitaire, an ad-free card game collection for macOS and iOS. Download it today!
|
|
|
|