#!/bin/bash

save=$(stty -g)
stty -echo
stty cbreak
java -jar VirtualZ80MiniComp.jar "${@}"
stty ${save}
exit 0
