diff --git a/README.md b/README.md index ff1211e..56f3166 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ This project provides an implementation of the LC-3 virtual machine in Swift. It ## Running LC3VM To run an LC-3 binary file using the LC3VM executable, use the following command: -```swift +```bash swift run LC3VM /path/to/your/lc3/binary/file.obj ``` @@ -31,7 +31,7 @@ This will load the specified binary file into the LC-3 virtual machine and start ### Example Programs You can find example LC-3 assembly programs in the `Programs` directory. To run one of these programs, use the following command: -```swift +```bash swift run LC3VM Programs/.obj ``` @@ -52,4 +52,4 @@ import LC3VMCore This project is licensed under the MIT License. See the LICENSE file for details. ## Acknowledgments -This project is a port of the LC-3 VM described in [this guide](https://www.jmeiners.com/lc3-vm/). Special thanks to the original author for providing a detailed and educational implementation of the LC-3 virtual machine. \ No newline at end of file +This project is a port of the LC-3 VM described in [this guide](https://www.jmeiners.com/lc3-vm/). Special thanks to the original author for providing a detailed and educational implementation of the LC-3 virtual machine.