diff options
| author | spv <spv@spv.sh> | 2026-04-21 13:05:20 -0400 |
|---|---|---|
| committer | spv <spv@spv.sh> | 2026-04-21 13:05:20 -0400 |
| commit | f8aa8ee83ebbabded35bdb11c8feead5cf81a246 (patch) | |
| tree | df524b71c69ba61a6a4ad31ea7ccc5768dc97471 /src/vm | |
Diffstat (limited to 'src/vm')
| -rwxr-xr-x | src/vm | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -0,0 +1,19 @@ +#!/usr/bin/env python3 + +import logger + +log = logger.logger() + +log.set_log_level(log.LOG_INSANEDEBUG) + +class VM: + def __init__(self): + log.log(log.LOG_INFO, "initializing %s" % str(self)) + log.log(log.LOG_INSANEDEBUG, "no") + + def start(self): + log.log(log.LOG_INFO, "starting VM %s" % str(self)) + +win10 = VM() + +win10.start() |
