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
@ LZ77 decompression routine | |
@ v1.0 - by fincs | |
.arch armv5te | |
.arm | |
.align 2 | |
.global LZ77_Decompress | |
.hidden LZ77_Decompress |
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 <feos.h> | |
#include <feos3d.h> | |
static void init3D() | |
{ | |
videoSetMode(MODE_0_3D); | |
glInit(); | |
// enable antialiasing | |
glEnable(GL_ANTIALIAS); |
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
/* | |
*************************************************** | |
* SciTE4AutoHotkey v3 syntax highlighting demo * | |
* August 19, 2010 - fincs * | |
*************************************************** | |
*/ | |
; Normal comment | |
/* | |
Block comment |
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
// | |
// Fully native C++ WinRT application example | |
// Programmed by fincs | |
// | |
#include <windows.h> | |
#include <roapi.h> | |
#include <wchar.h> | |
#include <stdio.h> | |
#include <stdlib.h> |
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 <fom.h> // FeOS Object Model header file | |
#include <ftl.h> // FOM Template Library header file | |
using namespace FOM; | |
using namespace FTL; | |
// Declare some interfaces... | |
// {65D3561A-7DD0-4740-BD4E-EA82DF1B8E9D} |
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
.arch armv5te | |
.section .init | |
.global __entrypoint | |
.hidden __entrypoint | |
.align 2 | |
@ This word-sized space is reserved by the OS. | |
.word 0 |
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
diff --git a/Makefile b/Makefile | |
index 0d01996..42b9e08 100644 | |
--- a/Makefile | |
+++ b/Makefile | |
@@ -14,7 +14,7 @@ VERSION := $(DSWIFI_MAJOR).$(DSWIFI_MINOR).$(DSWIFI_REVISION) | |
all: include/dswifi_version.h release debug | |
-include/dswifi_version.h : makefile | |
+include/dswifi_version.h : Makefile |
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
github.com###dashboard:style(display: flex; flex-direction: row) | |
github.com###dashboard > .dashboard-sidebar:style(order: 2) | |
github.com###dashboard > .news:style(order: 1) | |
github.com###dashboard > .news > .Details |