This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEVICE ZXSPECTRUMNEXT | |
ROM_PRINT_A EQU $0010 | |
ROM_CLS EQU $0D6B | |
ROM_CHAN_OPEN EQU $1601 | |
SYS_BORDCR EQU 23624 | |
SYS_ATTR_P EQU 23693 | |
ORG 0x8000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
# See http://preshing.com/20130115/view-your-filesystem-history-using-python | |
import optparse | |
import os | |
import fnmatch | |
import time | |
# Parse options | |
parser = optparse.OptionParser(usage='Usage: %prog [options] path [path2 ...]') | |
parser.add_option('-g', action='store', type='long', dest='secs', default=10, |