i got two numbers by using read_int, and added two numbers. And finally i checked the EFLAGS (dump_regs).
So, to set carry flag, I tried "4,294,967,295 + 1" but, carry flag didn't set.('CF' didn't show in screen )
What numbers do i need if i want to set carryflag?
call read_int
mov ebx, eax
call read_int
mov ecx, eax
mov edx, ebx ; add the two numbers, edx = ebx - ecx
add edx, ecx
mov eax, edx
call print_int
call print_nl
dump_regs 1
And i entered 4294967295 and 1
You can convince yourself of the carry flag getting set, if you run the following code:
Verify with numbers that don't produce a carry: