__m128 _mm_load_ps (float * a)
{
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
| using AsmResolver; | |
| using AsmResolver.PE; | |
| using AsmResolver.PE.Code; | |
| using AsmResolver.PE.File; | |
| using AsmResolver.PE.File.Headers; | |
| using AsmResolver.PE.Imports; | |
| using AsmResolver.PE.Imports.Builder; | |
| using AsmResolver.PE.Platforms; | |
| using AsmResolver.PE.Relocations; | |
| using AsmResolver.PE.Relocations.Builder; |
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
| # PowerView's last major overhaul is detailed here: http://www.harmj0y.net/blog/powershell/make-powerview-great-again/ | |
| # tricks for the 'old' PowerView are at https://gist.github.com/HarmJ0y/3328d954607d71362e3c | |
| # the most up-to-date version of PowerView will always be in the dev branch of PowerSploit: | |
| # https://github.com/PowerShellMafia/PowerSploit/blob/dev/Recon/PowerView.ps1 | |
| # New function naming schema: | |
| # Verbs: | |
| # Get : retrieve full raw data sets | |
| # Find : ‘find’ specific data entries in a data set |
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
| This archive contains the following programs: | |
| bfc The compiler for the 'brainfuck' language (240 bytes!) | |
| bfc.asm Source for the compiler | |
| bfi The interpreter for the 'brainfuck' language | |
| bfi.c Source for the interpreter (portable) | |
| src/ Some example programs in 'brainfuck' | |
| src/atoi.b Reads a number from stdin | |
| src/div10.b Divides the number under the pointer by 10 | |
| src/hello.b The ubiquitous "Hello World!" |