Assembly - shr instruction turn on carry flag?
I saw the next code:
shr AL, 1
jnc bit_0
I don't understand when the carry flag is turn on due to shr instrucrion?
Thanks
assembly x86
add a comment |
I saw the next code:
shr AL, 1
jnc bit_0
I don't understand when the carry flag is turn on due to shr instrucrion?
Thanks
assembly x86
2
It's testing whether AL is even or odd.
– harold
Mar 22 '12 at 16:04
add a comment |
I saw the next code:
shr AL, 1
jnc bit_0
I don't understand when the carry flag is turn on due to shr instrucrion?
Thanks
assembly x86
I saw the next code:
shr AL, 1
jnc bit_0
I don't understand when the carry flag is turn on due to shr instrucrion?
Thanks
assembly x86
assembly x86
asked Mar 22 '12 at 14:13
Adam ShAdam Sh
2,573164372
2,573164372
2
It's testing whether AL is even or odd.
– harold
Mar 22 '12 at 16:04
add a comment |
2
It's testing whether AL is even or odd.
– harold
Mar 22 '12 at 16:04
2
2
It's testing whether AL is even or odd.
– harold
Mar 22 '12 at 16:04
It's testing whether AL is even or odd.
– harold
Mar 22 '12 at 16:04
add a comment |
2 Answers
2
active
oldest
votes
shr AL, 1
moves all of the bits in AL
right one place.
The original rightmost bit is shifted out of the AL
register into the carry flag (and the new leftmost bit is set to 0). For example:
+------------------------+ +------------------------+
| 1 0 0 1 0 1 0 1 | | 0 1 1 0 0 1 0 0 |
+------------------------+ +------------------------+
or
+------------------------+ CF +------------------------+ CF
|(0) 1 0 0 1 0 1 0 | 1 |(0) 0 1 1 0 0 1 0 | 0
+------------------------+ +------------------------+
In your comment on another answer:
My book gives the next example: Before shift: AL = 10101110 ; shr AL, 1 ; After shift: 01011100, CF = 1 ; Is it mistake?
If that's what it says, then yes. That's a left shift (shl AL, 1
), not a right shift: the bits in AL
have all been moved left by one place, and the carry flag has been set to the bit that was shifted out of the left-hand end.
add a comment |
to add some clarifications :
shr AL, 1 ; it will (SH)ift (R)ight (1)x the value contained in AL register, which is 8 lower bits of AX register. Hence it will divide the value contained in AL by 2.
If AL was previously even like 0b100 (4) it will become 0b10 (2) and put 0 in the carry flag.
Carry Flag is bit 0 in the flag register https://en.wikipedia.org/wiki/FLAGS_register
If AL was previously an odd value like 0b101 (5) then it will become 0b10 (2) and put 1 in the flag register. Hence the carry flag will act like a remainder if you divide by 2.
jnc bit_0 ; It will (J)ump to label 'bit_0' if (N)o (C)arry flag was set, i.e if the value was even (like 0b100 in the above example) before the shift.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f9824030%2fassembly-shr-instruction-turn-on-carry-flag%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
shr AL, 1
moves all of the bits in AL
right one place.
The original rightmost bit is shifted out of the AL
register into the carry flag (and the new leftmost bit is set to 0). For example:
+------------------------+ +------------------------+
| 1 0 0 1 0 1 0 1 | | 0 1 1 0 0 1 0 0 |
+------------------------+ +------------------------+
or
+------------------------+ CF +------------------------+ CF
|(0) 1 0 0 1 0 1 0 | 1 |(0) 0 1 1 0 0 1 0 | 0
+------------------------+ +------------------------+
In your comment on another answer:
My book gives the next example: Before shift: AL = 10101110 ; shr AL, 1 ; After shift: 01011100, CF = 1 ; Is it mistake?
If that's what it says, then yes. That's a left shift (shl AL, 1
), not a right shift: the bits in AL
have all been moved left by one place, and the carry flag has been set to the bit that was shifted out of the left-hand end.
add a comment |
shr AL, 1
moves all of the bits in AL
right one place.
The original rightmost bit is shifted out of the AL
register into the carry flag (and the new leftmost bit is set to 0). For example:
+------------------------+ +------------------------+
| 1 0 0 1 0 1 0 1 | | 0 1 1 0 0 1 0 0 |
+------------------------+ +------------------------+
or
+------------------------+ CF +------------------------+ CF
|(0) 1 0 0 1 0 1 0 | 1 |(0) 0 1 1 0 0 1 0 | 0
+------------------------+ +------------------------+
In your comment on another answer:
My book gives the next example: Before shift: AL = 10101110 ; shr AL, 1 ; After shift: 01011100, CF = 1 ; Is it mistake?
If that's what it says, then yes. That's a left shift (shl AL, 1
), not a right shift: the bits in AL
have all been moved left by one place, and the carry flag has been set to the bit that was shifted out of the left-hand end.
add a comment |
shr AL, 1
moves all of the bits in AL
right one place.
The original rightmost bit is shifted out of the AL
register into the carry flag (and the new leftmost bit is set to 0). For example:
+------------------------+ +------------------------+
| 1 0 0 1 0 1 0 1 | | 0 1 1 0 0 1 0 0 |
+------------------------+ +------------------------+
or
+------------------------+ CF +------------------------+ CF
|(0) 1 0 0 1 0 1 0 | 1 |(0) 0 1 1 0 0 1 0 | 0
+------------------------+ +------------------------+
In your comment on another answer:
My book gives the next example: Before shift: AL = 10101110 ; shr AL, 1 ; After shift: 01011100, CF = 1 ; Is it mistake?
If that's what it says, then yes. That's a left shift (shl AL, 1
), not a right shift: the bits in AL
have all been moved left by one place, and the carry flag has been set to the bit that was shifted out of the left-hand end.
shr AL, 1
moves all of the bits in AL
right one place.
The original rightmost bit is shifted out of the AL
register into the carry flag (and the new leftmost bit is set to 0). For example:
+------------------------+ +------------------------+
| 1 0 0 1 0 1 0 1 | | 0 1 1 0 0 1 0 0 |
+------------------------+ +------------------------+
or
+------------------------+ CF +------------------------+ CF
|(0) 1 0 0 1 0 1 0 | 1 |(0) 0 1 1 0 0 1 0 | 0
+------------------------+ +------------------------+
In your comment on another answer:
My book gives the next example: Before shift: AL = 10101110 ; shr AL, 1 ; After shift: 01011100, CF = 1 ; Is it mistake?
If that's what it says, then yes. That's a left shift (shl AL, 1
), not a right shift: the bits in AL
have all been moved left by one place, and the carry flag has been set to the bit that was shifted out of the left-hand end.
answered Mar 24 '12 at 17:07
Matthew SlatteryMatthew Slattery
35.5k382105
35.5k382105
add a comment |
add a comment |
to add some clarifications :
shr AL, 1 ; it will (SH)ift (R)ight (1)x the value contained in AL register, which is 8 lower bits of AX register. Hence it will divide the value contained in AL by 2.
If AL was previously even like 0b100 (4) it will become 0b10 (2) and put 0 in the carry flag.
Carry Flag is bit 0 in the flag register https://en.wikipedia.org/wiki/FLAGS_register
If AL was previously an odd value like 0b101 (5) then it will become 0b10 (2) and put 1 in the flag register. Hence the carry flag will act like a remainder if you divide by 2.
jnc bit_0 ; It will (J)ump to label 'bit_0' if (N)o (C)arry flag was set, i.e if the value was even (like 0b100 in the above example) before the shift.
add a comment |
to add some clarifications :
shr AL, 1 ; it will (SH)ift (R)ight (1)x the value contained in AL register, which is 8 lower bits of AX register. Hence it will divide the value contained in AL by 2.
If AL was previously even like 0b100 (4) it will become 0b10 (2) and put 0 in the carry flag.
Carry Flag is bit 0 in the flag register https://en.wikipedia.org/wiki/FLAGS_register
If AL was previously an odd value like 0b101 (5) then it will become 0b10 (2) and put 1 in the flag register. Hence the carry flag will act like a remainder if you divide by 2.
jnc bit_0 ; It will (J)ump to label 'bit_0' if (N)o (C)arry flag was set, i.e if the value was even (like 0b100 in the above example) before the shift.
add a comment |
to add some clarifications :
shr AL, 1 ; it will (SH)ift (R)ight (1)x the value contained in AL register, which is 8 lower bits of AX register. Hence it will divide the value contained in AL by 2.
If AL was previously even like 0b100 (4) it will become 0b10 (2) and put 0 in the carry flag.
Carry Flag is bit 0 in the flag register https://en.wikipedia.org/wiki/FLAGS_register
If AL was previously an odd value like 0b101 (5) then it will become 0b10 (2) and put 1 in the flag register. Hence the carry flag will act like a remainder if you divide by 2.
jnc bit_0 ; It will (J)ump to label 'bit_0' if (N)o (C)arry flag was set, i.e if the value was even (like 0b100 in the above example) before the shift.
to add some clarifications :
shr AL, 1 ; it will (SH)ift (R)ight (1)x the value contained in AL register, which is 8 lower bits of AX register. Hence it will divide the value contained in AL by 2.
If AL was previously even like 0b100 (4) it will become 0b10 (2) and put 0 in the carry flag.
Carry Flag is bit 0 in the flag register https://en.wikipedia.org/wiki/FLAGS_register
If AL was previously an odd value like 0b101 (5) then it will become 0b10 (2) and put 1 in the flag register. Hence the carry flag will act like a remainder if you divide by 2.
jnc bit_0 ; It will (J)ump to label 'bit_0' if (N)o (C)arry flag was set, i.e if the value was even (like 0b100 in the above example) before the shift.
edited Nov 13 '18 at 14:24
Mustafa Enes Batur
54
54
answered Jan 23 '18 at 11:43
Antonin GAVRELAntonin GAVREL
567621
567621
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f9824030%2fassembly-shr-instruction-turn-on-carry-flag%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
It's testing whether AL is even or odd.
– harold
Mar 22 '12 at 16:04