Questions tagged [lc3]

Little Computer 3 (LC-3) is an educational assembly language, designed to help teach low-level programming. It is run using an emulator, and does not run natively on any processor.

Little Computer 3 (LC-3) is an educational assembly language with 15 opcodes, designed by Yale N. Patt and Sanjay J. Patel and published in their textbook Introduction to Computing Systems: From Bits and Gates to C and Beyond, 2nd edition (2003).

It exists solely for educational purposes, and does not run natively on any existing processor. Existing emulation tools include an assembler, a compiler, and a simulator, all provided by McGraw-Hill.

References

361 questions
-5
votes
1 answer

LC-3 to C conversion

I want to get the output: add reg1,reg2,reg3 My Code: #include #include #include void instruction(int binary); int binaryToDecimal(int n); int main() { int testBinary = 0001000110100011; …
Landon
  • 21
  • 2
  • 8
1 2 3
24
25