'How to use vm-translator module in Python?
someone explain how to use this module to convert a VM file to asm file. Thanks in advance
Solution 1:[1]
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.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Global-Occult |
