View gist:0983a12499f7bef119fa48dc0cc041e0
This file contains 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
x offset: 0x4 | |
SceWebKit | |
0x842E2F45: pop {r0, r1, r2, pc} | |
r0 : 0x5000E5B4 - stack: 0x0 | |
r1 : 0x50016324 - stack: 0x74736473 | |
r2 : 0x83987185 | |
x offset: 0x14 | |
SceWebKit | |
0x83A151F9: blx r2 | |
addr: 0x83987185 |
View rop.py
This file contains 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
''' | |
ROP Analyze | |
Written by St4rk | |
The code is a total mess and I don't know python (it's one of many reasons | |
that I decided to use python here, to learn) | |
Feel free to modify and do whatever you want | |
''' | |
# imports |
View gist:9a380293fe3aa259f28bc2e4115cb604
This file contains 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
1 -> | |
Um grande importante passo para a criação da música eletrônica é a inveção de Alexander Graham Bell em 1876 | |
que deu o ponta "pé" inicial do desenvolvimento da música eletrônica, sua criação estabeleceu que o som | |
poderia ser convertido em sinal elétrico e vice-versa. Após isso, sua próxima criação, o gramofone estabeleceu | |
as possibilidades de armazenar e alteração de soms. | |
Por volta de 1915 nós tivemos um outro passo importante para a geração de música eletrônica que foi a criação | |
do oscilador a válvula, por Lee De Forest. Ele possibilitava a geração de frequências a partir de sinais elétricos | |
e consequentimente a construção de instrumentos eletrônicos mais fáceis de manejar. | |
Foi então que em 1919/1920 tivemos a criação do Theremin por Lev Termen(Leon Theremin), esse instrumento | |
utilizava dois osciladores controlados pelo movimento das mãos do executante em torno de duas antenas veriticas, |
View gist:129d5c9d716693a93e0b2100833c7b2c
This file contains 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
1 -> | |
Um grande importante passo para a criação da música eletrônica é a inveção de Alexander Graham Bell em 1876 | |
que deu o ponta "pé" inicial do desenvolvimento da música eletrônica, sua criação estabeleceu que o som | |
poderia ser convertido em sinal elétrico e vice-versa. Após isso, sua próxima criação, o gramofone estabeleceu | |
as possibilidades de armazenar e alteração de soms. | |
Por volta de 1915 nós tivemos um outro passo importante para a geração de música eletrônica que foi a criação | |
do oscilador a válvula, por Lee De Forest. Ele possibilitava a geração de frequências a partir de sinais elétricos | |
e consequentimente a construção de instrumentos eletrônicos mais fáceis de manejar. | |
Foi então que em 1919/1920 tivemos a criação do Theremin por Lev Termen(Leon Theremin), esse instrumento | |
utilizava dois osciladores controlados pelo movimento das mãos do executante em torno de duas antenas veriticas, |
View watttt.cpp
This file contains 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
#include <iostream> | |
#include <functional> | |
class test { | |
public: | |
test(); | |
~test(); | |
View re1_vm.cpp
This file contains 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
/** | |
* Resident Evil 1 Script VM | |
* opcodes | |
*/ | |
void NOP() { |
View re1_debug.cpp
This file contains 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
#include <iostream> | |
#include <cstdio> | |
#include <cstdlib> | |
#include <cstring> | |
struct RE1_ROOM_ENTRY { | |
signed short enable; | |
signed short x; | |
signed short z; |
View whatever2.c
This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#define FRAMEBUFFER_HEIGHT 256 | |
#define FRAMEBUFFER_WIDTH 256 | |
/** 24BPP Pixel */ | |
typedef struct pixel { |
View wut.txt
This file contains 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
Size: 590 | |
Kernel Debug: [SceSettings ]:text=0x81000000(0x0016a000), data=0x8116a000(0x00001fbc/0x00049000) | |
addcont0: skipped -> NPXS10015 | |
[SceLibKernel ]:text=0xe0000000(0x00010000), data=0xe0010000(0x00000004/0x00001000) | |
[SceDriverUser ]:text=0xe0018000(0x0000a000), data=0xe0028000(0x00000008/0x0000a000) | |
[SceAvcodecUser ]:text=0xe0012000(0x00002000), (no data) | |
[SceGpuEs4User ]:text=0xe0034000(0x00005000), data=0xe0011000(0x00000000/0x00001000) | |
[SceGxm ]:text=0xe0040000(0x00024000), data=0xe0014000(0x00000000/0x00002000) | |
Size: 803 |
View des_avr.c
This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include "des.h" | |
#ifdef DES_DEBUG | |
void printbin(unsigned char data) { | |
printf("0b"); |
OlderNewer