mirror of
https://gitlab.os-k.eu/os-k-team/kvisc.git
synced 2023-08-25 14:05:46 +02:00
19 lines
405 B
Python
Executable File
19 lines
405 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
# The OS/K Team licenses this file to you under the MIT license.
|
|
# See the LICENSE file in the project root for more information.
|
|
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
if len(sys.argv) != 3:
|
|
print("Usage: {} input.asm output.bin".format(sys.argv[0]))
|
|
sys.exit(1)
|
|
|
|
fi = open(sys.argv[1], "r")
|
|
out = open(sys.argv[2], "wb")
|
|
|
|
out.close()
|
|
fi.close()
|
|
|