Menu

LiteASM – Virtual Machine Simulator Command Line Parameters

Virtual Machine Simulator Command Line Format

litevm filename [-l][-a]



filename : Specified compile binary file (".bin" file) to execute. Ignore the full path if binary file is located in the default directory.

-l : Optional parameter to hide script log messages. If this flag is active virtual machine may not show messages generated through the "Log" function.

-a : Optional parameter to ignore assertion halts. With this flag, LiteASM virtual machine simulator may not halt with the assertion failures. In LiteASM, assertion failures are raise through "Assert" script function.

Virtual Machine Simulator Command Line Examples

Execute "demo.bin" file with default parameters

litevm demo.bin


Execute "demo.bin" file with hide script log flag

litevm demo.bin -l


Execute "demo.bin" file with disabled assertion check

litevm demo.bin -a

Related

Documentation: Assert
Documentation: Home