How to use vm-translator module in Python?

191 Views Asked by At

someone explain how to use this module to convert a VM file to asm file. Thanks in advance

1

There are 1 best solutions below

0
On

Command line - vm-translator fileName.vm

Python code -

import os
os.system("vm-translator fileName.vm")

And maybe the next time read the documentation before asking a question.