-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Sarita Singh edited this page Nov 1, 2021
·
8 revisions
Welcome to the xeus-asm wiki!
-
Clone this repository.
-
Download miniconda link
-
create a virual env
conda create -n vasm
- Activate virtual environment that you created
conda activate vasm
- Install dependencies
conda install -c conda-forge jupyter xeus xtl nlohmann_json cppzmq
- Make a build directory to store all the build files
mkdir build
- Change directory to build folder
cd build
- Configure CMake
cmake .. -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX
- Build the project by
make
- Install application
make install
- Launch Jupyter Notebook in the browser
jupyter notebook
- Launch Jupyter Notebook in the terminal
jupyter console --kernel=xasm
-
Enter your code: enter your assembly code.
-
To terminate the code, enter
HLT
command. -
To clean build folder
sudo rm -rf *
- Remove the virtual environment you create
conda env remove -n vasm