Addenum to Holy Grail with a bit more info, from http://theducks.livejournal.com/492985.html
I hang out on a number of modding boards around the internet. The "Holy Grail" i…
Soft switches have a hardware component: there is circuitry that reacts to particular address lines being tickled. That's why things like peek can affect them from BASIC.
68kMLAHardwareby david__schmidtThu, 26 Feb 2009 - 22:57
Here's a question for which I have not found the answer:
The Apple II, as you should know, has some soft-switches, memory locations which cause some setting to change. My question…
Some people have basically recased a laptops guts in a box and made the LCD seperate using a home made cable. There are old ISA cards that talk directly but they are probably for o…
68kMLAHardwareby Unknown_KThu, 26 Feb 2009 - 21:17
http://www.applefritter.com/holygrail
Excerpted from the Applefritter FAQ
Q: How do I turn this laptop/iMac screen into a monitor?
A: Put simply you don't. Whilst it is pos…
I needed new clutch hinges for my Pismo so I won an auction on eBay that contained two sketchy LCDs and one set of hinges. So I have a couple of spare Pismo LCDs. One is supposed…
68kMLAHardwareby Dennis NedryThu, 26 Feb 2009 - 20:46
I believe that keyboard simply switches the layout to Dvorak and back again to Qwerty--is this true? And, I'd hazard a guess that the 80/40 key switches the resolution in GR mode …
Hi,
Okay, l added the string variables, and it works perfectly! I guess I just made a few errors beforehand...
Just one more question, though...those two buttons labeled 'keyboa…
68kMLASoftwareby ApostropheWed, 25 Feb 2009 - 22:12
new
10 home
20 input "What state do you live in?";a
30 if a="Ohio" then goto 50
40 if a<>"Ohio" then goto 10
50 input "Correct! Type 'next' for the next questio…
Not having an Apple IIc handy but wanting the experience I went to http://www.calormen.com/Applesoft/index.htm and tried out the Applesoft Basic simulator that runs in Javascript. …
Can you post what your squiggly boxes look like. I'm not fluent in Tamil, but when I clicked your link in Safari 3.2.1, I got the following.
{
"lightbox_close": "Close",
…
68kMLASoftwareby istar1018Wed, 25 Feb 2009 - 15:57
My friend would like to be able to display Tamil pages on an eMac 1.42 GHz running Leopard, so his mom can use the computer when the PC is down because of viruses.
Currently, all …
68kMLASoftwareby Mike RichardsonWed, 25 Feb 2009 - 11:20
DIM A$(1), B$(1), C$(1) or even simpler DIM A$, B$, C$
Click to expand...
Neither is necessary... the first will create arrays and the second AFAIK won't do anything. Simply c…
My prior post may go too far and create arrays of string variables, so also try the simpler
DIM A$(1), B$(1), C$(1) or even simpler DIM A$, B$, C$
I saw somewhere that Applesoft …
Just a guess...you may have to declare a$ first specifying a non zero maximum string length in bytes.
Try
Dim A$(64), B$(64), C$(255)
at the start of the program and see if that…
Thanks David--as I told wally, I've already tried string variables, but maybe I didn't do it right, or missed a few keys, etc.
When I turn the IIc on again tomorrow I'll try enter…
68kMLASoftwareby ApostropheWed, 25 Feb 2009 - 01:18
You need all string variables.
Code:
10 home
20 input "What state do you live in?";a$
30 if a$="Ohio" then goto 50
40 if a$<>"Ohio" then goto 10
50 input "Cor…
68kMLASoftwareby david__schmidtWed, 25 Feb 2009 - 01:12