SHR and &Poke [message #421679] |
Tue, 16 April 2024 19:38 |
|
Originally posted by: Duhast
We can talk about the deadness of the group, or we could play with our
Apple II's.
As an experiment, I installed Hplot GS feature in the 0ct '87 issue of
Nibble. It allows plot to the SHR screen from Applesoft. I only wanted
it to initialize the SHR screen and turn on and off the display.
I then installed &POKE from the Beagle Bros Extra K disk. Disconnecting
the /RAM drive like advised.
I'm able to &POKE values into the AUX mem, and it shadows to the SHR
screen and works great....except. It does not work &Pokeing to screen
lines over 102 or 103, decimals 24512 and above. According to &PEEK the
value is there in memory, it just doesn't show up on the screen. Can't
really figure it out.....
|
|
|
Re: SHR and &Poke [message #421693 is a reply to message #421679] |
Sun, 21 April 2024 14:31 |
Aaron Daughtry
Messages: 227 Registered: July 2013
Karma: 0
|
Senior Member |
|
|
This works as expected, for me, under MAME:
10 & hgr
20 for i=0 to 31999
30 c=rnd(1)*255
40 &poke 8192+i,c
50 next i
60 get x$
70 &text
80 end
On 2024-04-16 23:38:37 +0000, Duhast said:
> We can talk about the deadness of the group, or we could play with our
> Apple II's.
>
> As an experiment, I installed Hplot GS feature in the 0ct '87 issue of
> Nibble. It allows plot to the SHR screen from Applesoft. I only
> wanted it to initialize the SHR screen and turn on and off the display.
>
> I then installed &POKE from the Beagle Bros Extra K disk.
> Disconnecting the /RAM drive like advised.
>
> I'm able to &POKE values into the AUX mem, and it shadows to the SHR
> screen and works great....except. It does not work &Pokeing to screen
> lines over 102 or 103, decimals 24512 and above. According to &PEEK
> the value is there in memory, it just doesn't show up on the screen.
> Can't really figure it out.....
|
|
|
Re: SHR and &Poke [message #421694 is a reply to message #421693] |
Sun, 21 April 2024 21:35 |
|
Originally posted by: Duhast
On 4/21/2024 2:31 PM, Kelvin Sherlock wrote:
> This works as expected, for me, under MAME:
>
> 10 & hgr
> 20 for i=0 to 31999
> 30 c=rnd(1)*255
> 40 &poke 8192+i,c
> 50 next i
> 60 get x$
> 70 &text
> 80 end
>
Does not work with GSplus v0.14.
I'll have to try some other emulators.
|
|
|
Re: SHR and &Poke [message #421696 is a reply to message #421694] |
Mon, 22 April 2024 22:11 |
|
Originally posted by: Duhast
On 4/21/2024 9:35 PM, Duhast wrote:
> On 4/21/2024 2:31 PM, Kelvin Sherlock wrote:
>> This works as expected, for me, under MAME:
>>
>> 10 & hgr
>> 20 for i=0 to 31999
>> 30 c=rnd(1)*255
>> 40 &poke 8192+i,c
>> 50 next i
>> 60 get x$
>> 70 &text
>> 80 end
>>
>
> Does not work with GSplus v0.14.
>
> I'll have to try some other emulators.
>
>
Does not work with KEGS v1.34 either.
|
|
|