Write an assembly program that will prompt the user for 3 inputs (let’s abstractly call them a, b, and c) without a leading string. It will then calculate the value of: 4*(a + b) - 5*c. You can ONLY use the mult instruction ONCE!
Write an assembly program that will prompt the user for 3 inputs (let’s abstractly call them a, b, and c) without a leading string. It will then calculate the value of: 4*(a + b) - 5*c. You can ONLY use the mult instruction ONCE!