added ps2 keyboard captures

This commit is contained in:
dekunukem
2021-09-15 21:26:28 +01:00
parent 330443f99a
commit 5e7b8570bb
5 changed files with 35 additions and 0 deletions

View File

Binary file not shown.

BIN
captures/athlon_pc_keys.sal Normal file
View File

Binary file not shown.

View File

@@ -0,0 +1,19 @@
esc
F2
F5
1
2
a
b
insert
delete
screenshot
scrollock
pause
numpad
numpad 0
numpad 5
numpad .

15
push.sh Normal file
View File

@@ -0,0 +1,15 @@
if [[ $# -eq 0 ]] ; then
echo 'error: please enter a commit comment'
exit 1
fi
find . -type f -name "*.b#*" -exec rm -f {} \;
find . -type f -name "*.s#*" -exec rm -f {} \;
find . -type f -name "*.l#*" -exec rm -f {} \;
find . -type f -name "*.csv#*" -exec rm -f {} \;
find . -type f -name "*.DS_Store*" -exec rm -f {} \;
find . -name "__pycache__" -exec rm -rf {} \;
git add --all
git commit -m "$@"
git push origin master

1
reset.sh Normal file
View File

@@ -0,0 +1 @@
git reset --hard HEAD; git clean -f -d