Previous Thread
Next Thread
Print Thread
XCALL PEEK,POKE question #37714 17 Dec 24 02:04 PM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content OP
Member
OP Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
Here's the setup of the code.

Code
miame.ini
SBR=MSGNUM:6,MSGSIZ:512                                                                             ; set PEEK,POKE, and COMMON memory to 512 bytes


Code
DEFSTRUCT peek'poke'record_struct
	MAP2 store'number,s,2                                                      ! 1   - 2
	MAP2 user'work'space,s,510                                                 ! 4   - 512
ENDSTRUCT


If we change the MSGSIZ:513 and add MAP2 hand'held$,s,1 to peek'poke'record_struct

Code
DEFSTRUCT peek'poke'record_struct
	MAP2 store'number,s,2                                                      ! 1   - 2
	MAP2 user'work'space,s,510                                                 ! 4   - 512
	MAP2 hand'held$,s,1                                                        ! 3   - 1
ENDSTRUCT


Would programs not compiled with the new structure clear the trailing byte with XCALL POKE, or does POKE only update the original 512 bytes.

Just trying to figure out if this is supported, and safe to do.

Typically we just modify shorten the user'work'space member, but if you have a need for all 510 bytes you can't do that?

FYI, couldn't find any documentation on PEEK,POKE.


Stephen Funkhouser
Diversified Data Solutions
Re: XCALL PEEK,POKE question [Re: Stephen Funkhouser] #37715 17 Dec 24 04:46 PM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
This may be the first reference to either of these subroutines (that I'm aware of) in nearly 25 years! Perhaps Karli (or Larry Frick) was the motivation behind their creation? (Most of the undocumented subroutines are ones that we converted from assembler for a particular developer, who wouldn't benefit from us documenting what they had presumably designed.) Fortunately, the code is quite simple for both of these, which act like simplified versions of COMMON, using the fixed packet name "PEPOKE". .

To answer your first question, the PEEK routine does pre-clear the argument you pass, regardless of its size. In fact, there is no specific size for the parameter to either routine. Since it is just a front-end to the common/shared XCALL COMMON core function, the size depends on the MIAME.INI directive SBR=MSGSIZ.

If your MSGSIZ=512, POKE will only store the first 512 bytes of the packet you pass, and that would be the maximum that PEEK can possibly read. But there's nothing stopping you from setting MSGSIZ to 513 or 15987. In any case, the MSGSIZ specification only sets the maximum size that can be stored; you can always store and retrieve smaller packets. So yes, your plan is safe.

Re: XCALL PEEK,POKE question [Re: Stephen Funkhouser] #37716 18 Dec 24 07:27 AM
Joined: Nov 2006
Posts: 2,262
S
Stephen Funkhouser Online Content OP
Member
OP Online Content
Member
S
Joined: Nov 2006
Posts: 2,262
Thanks for the info


Stephen Funkhouser
Diversified Data Solutions

Moderated by  Jack McGregor, Ty Griffin 

Powered by UBB.threads™ PHP Forum Software 7.7.3