Email or username:

Password:

Forgot your password?
Top-level
tanavit

@dvogel @kenshirriff

A word is 24 bit, but arithmetic operations are made one bit by one bit, beginning by least significant one.

We do the same in 10 base. first adding the units then the tens then the hundreds...

1 comment
Drew 🐘

@tanavit @kenshirriff So if a "register" contained 2**24-1 (all 1s) and then the program added 1 (overflowing), the register would see 24 different states (1 for each bit), and after the first cycle it would have appeared to have subtracted 1 bit, first setting the lowest bit to 0 while the remaining 23 bits were still set to 1. Do I have that right?

If that is the case, was the program written to include some check-pointing logic to avoid reading interstitial states after a power loss?

Go Up