From c077e10ed80c7f0fe034585e7179159b8ea41151 Mon Sep 17 00:00:00 2001 From: Philipp Koppe Date: Mon, 6 Nov 2023 23:47:14 +0100 Subject: [PATCH] Small fixes in README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 601b562..e5364fd 100644 --- a/README.md +++ b/README.md @@ -93,13 +93,13 @@ For more instructions regarding the Rust binding, refer to its [README](bindings Install Nyxstone with pip. On some distributions you may have to create a virtual environment. -´´´ +``` $ pip install nyxstone $ python -q -\>\>\> from nyxstone import NyxstoneBuilder -\>\>\> nyxstone = NyxstoneBuilder().with_triple("x86_64").build() -\>\>\> nyxstone.assemble_to_bytes("jne .loop", 0x1100, {".loop": 0x1000}) -´´´ +>>> from nyxstone import NyxstoneBuilder +>>> nyxstone = NyxstoneBuilder().with_triple("x86_64").build() +>>> nyxstone.assemble_to_bytes("jne .loop", 0x1100, {".loop": 0x1000}) +``` For more instructions regarding the Python binding, refer to its [README](bindings/python/README.md).