Some of the information are from [this writeup][ja] and some come from original researches.
[slider_cap.zip (sigrok format)][slider-cap-sigrok]
[slider_cap.zip (original ZeroPlus ALC format)][slider-cap-alc]
/* | |
* datsum.c | |
* Generates checksum for Taiko no Tatsujin iOS dat file | |
* | |
* NOTE: For 32-bit build, set _FILE_OFFSET_BITS=64 | |
*/ | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <stdlib.h> | |
#include <sys/types.h> |
#!/bin/bash | |
# 20131221 - Add new font type - 1040006, 104900{1,2,3} | |
getglyphname(){ | |
if [ ! $1 == ' ' ] | |
then { | |
printf "%s.jpg\n" \ | |
$({ | |
LC_CTYPE=C.UTF-8 printf "baidu_dazz%x" "'$1" \ | |
| md5sum \ |
#!/bin/bash | |
if [[ ! -d /.bootbackup ]]; then | |
mkdir /.bootbackup | |
fi | |
grep -qs '/boot ' /proc/mounts || mount /boot | |
rsync -av --delete /boot /.bootbackup |
Stock | Buttons | Sticks | Touchpad | ATRF | TTRF | TGRF | AR | |
---|---|---|---|---|---|---|---|---|
Absolute? | β | β | β | β (2 points only) | β | β | β | β |
Pinch in/out ordering | β | β | β | β | β | β | β | β |
Linear encoding | β | β | β | β (limited) | β (limited) | β (limited) | β | β |
Multi-point (>2) | β | β (directions only) | β | β | β (current impl) | β (current impl) | summed | β |
Single swipe fills | 31 | undeterministic | undeterministic | 20 | 40 | 40 | 40 (could be β) | 31 |
Maximum fills | 136 (8 fingers end-to-end) | β | β | 40 | 40 | 40 | 40+β | 136 (8 fingers end-to-end) |
#!/bin/bash | |
# Old code, published as-is. Should work on most 64Mbit games. Not sure about others. | |
SAVE_OFFSET=$((0x50000)) | |
SAVE_SIZE=$((0x20000)) | |
save_read() { | |
dd if="$1" of="$2" \ | |
iflag=skip_bytes,count_bytes count=$SAVE_SIZE skip=$SAVE_OFFSET | |
} |
#!/bin/bash | |
[[ $# -lt 2 ]] && echo "Usage: ${0} jedi-ca ds4id" && exit 1 | |
openssl dgst -sha256 -sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:-1 -verify "${1}" -signature "${2}.sig" "${2}" |
"Everything you wanted to know about CRC algorithms, but were afraid to ask for fear that errors in your understanding might be detected."
Version : 3.
Date : 19 August 1993.
Author : Ross N. Williams.
Net : [email protected].
#include <errno.h> | |
#include <stdio.h> | |
int main(void) { | |
errno = 0; | |
perror("Error"); | |
return 0; | |
} |
This documentation is provided solely for education and interoperability purposes (aka persons who are tired of proprietary non-customizable hardware and want to use their own hardware for DIY controllers). It enables neither chip-cloning nor controller counterfeiting which would violate copyright and/or any other applicable laws. This documentation also comes without warranty. Use it at your own risk.