Forum Discussion
Altera_Forum
Honored Contributor
10 years ago --- Quote Start --- Why do you want to use bcd? That makes things very complicated and use a lot of resources. Why not just work in binary like every other language? You can easily do arithmatic in vhdl with the IEEE.numeric_std library A <= b + (c*d); --- Quote End --- Very interesting, so you suggest me to convert the input from decimal to entirely Binary, process everything inside and then to convert back to decimal?