4 questions
Score of 0
2 answers
256 views
ZX81 ‘BASIC’ peek function
I want to find the code of a character printed.
This is the code:
10 Print AT 2,2; "T"
20 Let C=Peek(Peek 16398+256*Peek 16399)
30 Print Peek(C)
It should just print the Code value of T.
I ...
Score of 9
2 answers
667 views
Help: ZX81 'BASIC' Peek function [duplicate]
I need a way to find if the character ('<') has hit a wall (Black pixel Graphic)
-On a ZX81 game.
I'm been looking at another game... which uses code
if peek(peek 16398 +256*peek 16399) = code "...
Score of 7
3 answers
730 views
Help: ZX81 BASIC "Peek" function
I need a way to find if the character ('<') has hit a wall (Black pixel Graphic)
-On a ZX81 game.
I'm been looking at another game... which uses code
if peek(peek 16398 +256*peek 16399) = code "*...
Score of 3
5 answers
1016 views
Quick divisibility check in ZX81 BASIC
Since many of the Project Euler problems require you to do a divisibility check for quite a number of times, I've been trying to figure out the fastest way to perform this task in ZX81 BASIC.
So far ...