Mithsubishi A1SJH plc

asaduddin

Member
Join Date
Apr 2005
Location
INDIA
Posts
1
HI,can anybody tell me the meaning of following instructions of mithsubishi A1SJH plc:
BMOV D200 R0Z K208
BMOV R0V D500 K52
 
These are block move instructions.
BMOV D200 R0Z K208 will move 208 words of data from D200 to D407 into R0 to R207 as long as the value in Z is 0. Z is an index which can offset the destination for the move so if Z is 10 then the data will move into R10 to R217.
BMOV R0V D500 K52 similarly moves 52 words of data from R0 (with index V) into D500 - D501.
 
why don't you get the manual and see all instructions and examples (www.meau.com)

MOV D0 D1 - copies one register to another
FMOV K333 D20 K5 - fill move, fills 5 registers starting with D20 with values 333(dec).
BMOV D20 D30 K3 - block move, copies values D20 to D30, D21 to D31 and D22 to D32. Change K3 to k4 to copy four registers etc.
BMOVP ... - Same as above but does it only once (transfer on rising Pulse)

Edit:
So you think you know MOV instruction now? Think again:

MOV U10\G12000 K3Y30Z2 - .... this is $0.02 question so you better read the manual ;-)
 
Last edited:
I have just re-read my reply to this post and there is an error in the last line. This should read:
BMOV R0V D500 K52 similarly moves 52 words of data from R0 (with index V) into D500 - D551.
Sorry
Andy.
 
Colt

Edit:
So you think you know MOV instruction now? Think again:

MOV U10\G12000 K3Y30Z2 - .... this is $0.02 question so you better read the manual ;-)[/QUOTE]

Is this a test?

This instruction is only available in Q processors and means:

Transfer the contents of Buffer Memory Address 12000 in the Special Function Module located at Head Address 100(H) to the three nibbles (12 consecutive bits) starting at output Y30, where the start address (Y30) is offset by the contents of Index Register Z2. i.e. add the value in Z2 to 30 to determine the destination base address.
 

Similar Topics

Hi Guys, Hoping someone here can help me. We have a customer that is using the Mitsubishi A1SJH PLCs, they have a few of these throughout their...
Replies
3
Views
2,837
Hi all, Im a beginner a programming PLC's, so if anyone help with some of my questions, that would be highly appreciated. Currently I'm working...
Replies
5
Views
3,567
Hello all, I am using MEDOC software package Version 1.64C and I have new PLC with CPU type A1SJH. This type of CPU is not mentioned in the PLC...
Replies
3
Views
5,988
Hi Everybody Can anybody tell me what is the difference between R(File Registers) and D(Data Registers) even i go through the programming...
Replies
3
Views
6,510
Unregistered
U
Good Day to all of you, this is my first post, i will try to explain as best as possible, english is not my natural language. I am performing an...
Replies
0
Views
26
Back
Top Bottom