Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Technically, it should say it lacks built-in arithmetic instructions. Any processor can add, subtract, multiply, or fixed width integers via some combination of bitwise operations. For example, https://en.wikipedia.org/wiki/Bitwise_operation#Applications shows how to do unsigned addition and multiplication.

And, of course, for better or worse, "add two numbers without using the + operator" is one of those silly LeetCode trivia questions software engineers occasionally get quizzed on.



Yes, addition and all other arithmetic and logical operations can be implemented using only one building block: Peirce's arrow (Logical NOR). I can't understand why you are getting downvoted.


A question I was interested in a while ago was, how would you implement the usual bitwise operations if you can only do 2s-complement arithmetic.

I wasn't sure if it's something anyone reasonably bright should be able to derive, or how to search for it.


I did this in my head and came up with -1*(-x - y); seems a little cheeky but acceptable.


If you're allowed negation, (like `-x`) then `x - (-y)` seems even better.


Subtract is a "built-in arithmetic instructions" so it wouldn't be allowed in this environment. The idea is to implement arithmetic, but from bitwise operations. https://en.wikipedia.org/wiki/Bitwise_operation


This is getting far afield from the actual Nanoprocessor, which has increment and decrement instructions. With those, you can add two numbers by repeatedly incrementing one and decrementing the other. (Which is a bit like addition using the Peano axioms.)

See page 126 of the Nanoprocessor User's Manual for code to add two numbers in this way.

https://www.hp9845.net/9845/downloads/manuals/Nanoprocessor....


One can also use the techniques demonstrated your reversing the ALU article. :)

https://www.righto.com/2020/08/reverse-engineering-8086s.htm...


Interesting problem. In this case though, I was just offering a pointless optimization to the parent post, which also used subtraction, so I assumed it was allowed.


Here's some background on how things like that work:

https://en.wikipedia.org/wiki/Adder_(electronics)





Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: