01-02-2015, 05:58 AM
(This post was last modified: 01-02-2015, 08:25 AM by Apocryphan.)
The first hex value is easy to convert to decimal, the 2nd i noticed some patterns but im not sure how to manipulate it to get the right output.
Far left hopper is the input. the first digit repeats after 5 so i adjust it to 1-5. The tens digit seems like a similar pattern every 5, but subtracted by 2 or even shifting diagnolly there is a pattern. the increments go up by +1 +2 +1 +2 +2. Not sure how i should go about doing it, any input would be awesome.
ten's digit
1-5 1 3 4 6 8
6-10 9 1 2 4 6
11-15 7 9 0 2 4
Edit: I threw a rom on the 2nd digit, and it works for the 2nd hex value, so this works as a hex multiplier. i just need to make it add the 1st value and carry when necessary.