FLAGS 레지스터와 상태 비트
EFLAGS/RFLAGS 레지스터를 살펴보며, 산술 및 비교 명령어가 ZF, CF, SF, OF와 같은 상태 플래그를 설정하고 모든 조건부 판단을 제어하는 방식을 알아봅니다.
FLAGS 레지스터와 상태 비트은(는) CoddyKit의 무료 Assembly Language & x86 Low-Level Systems Programming 강의입니다. 이것은 4개 중 4번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Assembly Language & x86 Low-Level Systems Programming 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Assembly Language & x86 Low-Level Systems Programming 강의에는 총 4개의 강의가 포함되어 있습니다.
이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.
What is the FLAGS Register?
The FLAGS register (EFLAGS in 32-bit, RFLAGS in 64-bit) is a special register where individual bits record the result of the most recent operation.
Why Flags Matter
The CPU has no boolean type. Instead, instructions set flag bits, and conditional jumps read them. Flags are the glue between arithmetic and control flow.
The Zero Flag (ZF)
ZF is set to 1 when the result of an operation is zero. It is the basis of equality tests.
cmp eax, ebx ; sets ZF if eax == ebxThe Carry Flag (CF)
CF is set when an unsigned operation overflows out of the most significant bit, e.g. an addition that exceeds the register width.
add al, 1 ; CF set if al was 0xFFThe Sign Flag (SF)
SF copies the most significant bit of the result, indicating a negative value in signed interpretation.
The Overflow Flag (OF)
OF is set when a signed operation produces a result too large or small for the destination, i.e. signed overflow.
How CMP Works
CMP a, b performs a - b but discards the result, keeping only the flags. This lets you test relationships without changing operands.
cmp eax, 10TEST for Bit Checks
TEST a, b computes a bitwise AND, discards the result, and sets flags, commonly used to check if a value is zero or test specific bits.
test eax, eax ; ZF set if eax == 0Flags Drive Conditional Jumps
Conditional jumps read flags:
JE/JZ: jump if ZF=1JNE/JNZ: jump if ZF=0JC: jump if CF=1JG: signed greater (uses ZF, SF, OF)
Signed vs Unsigned Conditions
Signed comparisons use SF and OF; unsigned comparisons use CF. Choosing the wrong jump (JA vs JG) is a classic bug.
Directly Affecting Flags
Some instructions set or clear flags explicitly, like STC (set carry) and CLC (clear carry), useful before multi-precision arithmetic.
clc ; clear carry before add chainQuick Check
Test your understanding of CPU flags.
Recap
You learned the FLAGS register:
- ZF zero, CF unsigned overflow, SF sign, OF signed overflow
CMPandTESTset flags without storing results- Conditional jumps branch on flag state
- Match signed/unsigned jumps to the comparison
AI 튜터와 함께 Assembly을(를) 배우세요 — 무료
브라우저에서 실제 코드를 작성하고 실행하며, 24/7 AI 튜터로부터 즉각적인 도움을 받고, 웹이나 앱에서 중단한 부분부터 계속 학습하세요.
- 코스
- 12
- 레슨
- 48
자주 묻는 질문
“FLAGS 레지스터와 상태 비트” 강의는 무료인가요?
네 — “FLAGS 레지스터와 상태 비트” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Assembly Language & x86 Low-Level Systems Programming 강의 전체를 잠금 해제할 수 있습니다. Assembly Language & x86 Low-Level Systems Programming 강의에는 총 4개의 강의가 포함되어 있습니다.
“FLAGS 레지스터와 상태 비트”에서 뭘 배우나요?
EFLAGS/RFLAGS 레지스터를 살펴보며, 산술 및 비교 명령어가 ZF, CF, SF, OF와 같은 상태 플래그를 설정하고 모든 조건부 판단을 제어하는 방식을 알아봅니다. 브라우저에서 직접 실행하는 실습 코드로 Assembly Language & x86 Low-Level Systems Programming을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Assembly Language & x86 Low-Level Systems Programming을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Assembly Language & x86 Low-Level Systems Programming은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 4번째 강의입니다.
“FLAGS 레지스터와 상태 비트” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Assembly Language & x86 Low-Level Systems Programming 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Assembly Language & x86 Low-Level Systems Programming 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.
이 강의의 모든 강의
- x86 레지스터 쉽게 이해하기
- 메모리 주소 지정 모드
- 데이터 표현과 타입
- FLAGS 레지스터와 상태 비트