Add carry flag "threading"
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Dominic Grimm 2022-07-09 21:08:27 +02:00
parent 54bd10f913
commit db5aeb333c
No known key found for this signature in database
GPG key ID: A6C051C716D2CE65

View file

@ -184,13 +184,13 @@ module Hence
when 0x08 # shr
@reg_tmp = @reg_a >> @reg_b
when 0x09 # add
@reg_tmp = @reg_a &+ @reg_b
@reg_tmp = @reg_a &+ @reg_b &+ (@reg_s & 0b00000001_u8)
@reg_s &= 0b11111110_u8
if @reg_tmp < @reg_a
@reg_s |= 0b00000001_u8
end
when 0x0a # sub
@reg_tmp = @reg_a &- @reg_b
@reg_tmp = @reg_a &- @reg_b &- (@reg_s & 0b00000001_u8)
@reg_s &= 0b11111110_u8
if @reg_tmp > @reg_a
@reg_s |= 0b00000001_u8