Sign in to follow this  
Followers 0
cauchy

Memory areas

3 posts in this topic

I know I,Q,C,T,M but What are the memory area "L" , "D" and others in the programming applications? How can I find this terms in programming manuel? Icoldn't find...

Share this post


Link to post
Share on other sites
L is local temp flags. They can be programmed directly, but don't expect to latch one they are used by numerous blocks. Also at the top of the block, where the input and output parameters are programmed, there's a TEMP field where you can assign tags to the temp flags you want to use in the block, the address field is the temp 'L' flag range used, i.e. if its a bit and 0.0 is in the address it will be L 0.0 that is used when you use that tag. D is data bits, ie DB50.DBX0.0.

Share this post


Link to post
Share on other sites
Hi, you can use L like local variables in subrutines or in interrupt programs in MicroWin software. You can implement variables from local stack in the table above the window. With D you can mark area with size double word : B-byte W - word D - double word For example: If you want to read "I" area I0.0 IB0 IW0 ID0

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!


Register a new account

Sign in

Already have an account? Sign in here.


Sign In Now
Sign in to follow this  
Followers 0