| Track | Game |
|---|---|
| Naminé | KH: CoM |
| Musique pour la tristesse de Xion | KH: 358/2 Days |
| Vector to the Heavens | KH: 358/2 Days |
| The Other Promise | Kingdom Hearts II |
| Ventus | KH: BBS |
| Unbreakable Chains | KH: BBS |
- Rainbow of our Departure
- Pokemon -- I Choose You! (Episode 1), end
- Fight for the Light, end
- Fly Me to the Moon, 16:45
- Get the Show on the Road (AG episode 1), 18:21
- Spearow's Attack
- Pokemon -- I Choose You! (Episode 1)
- Very frequent
- ??? Familiar; chimes, strings
- Fly Me to the Moon, 15:30
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
| /* | |
| * compile with DJGPP | |
| */ | |
| #include <stdio.h> | |
| #include <conio.h> | |
| #include <dos.h> | |
| #include <pc.h> | |
| void |
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
| f = open('dog.obj','r') | |
| verts = [] | |
| uvs = [] | |
| normals = [] | |
| faces = [] | |
| for line in f: | |
| if line[:2] == 'v ': | |
| verts.append(tuple(map(lambda s:float(s),line.split()[1:]))) |
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
| AS=riscv32-elf-as | |
| CC=riscv32-elf-gcc | |
| LD=riscv32-elf-ld | |
| OBJCOPY=riscv32-elf-objcopy | |
| LDFLAGS=-T riscv.ld | |
| ASFLAGS=-march=rv32imfd | |
| CFLAGS=$(ASFLAGS) -O2 | |
| .SUFFIXES: .s .S .txt |
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
| .text | |
| .globl _main | |
| _main: | |
| call ___djgpp_nearptr_enable | |
| testl %eax, %eax | |
| jz err | |
| movw $0x13, %ax | |
| int $0x10 | |
| movl $0xa0000, %ebx | |
| subl ___djgpp_base_address, %ebx |
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
| ;;;; Monads | |
| (define (return x) (make-result x)) | |
| (define (bind m k) | |
| (make-thunk (lambda () (execute! (k (execute! m)))))) | |
| (define (execute! m) | |
| (cond ((result? m) (result-value m)) | |
| ((thunk? m) (execute-thunk! m)))) |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #define SECTOR 512 | |
| #define BOOTMAGIC 0xaa55 | |
| char disk[SECTOR*2880]; | |
| int | |
| main(int argc, const char *argv[]) |
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
| --- ../Downloads/uudecode.c 1994-04-03 06:16:37 +1200 | |
| +++ uudecode.c 2018-03-04 18:23:50 +1300 | |
| @@ -50,8 +50,8 @@ | |
| #include <sys/param.h> | |
| #include <sys/stat.h> | |
| -#include <pwd.h> | |
| #include <stdio.h> | |
| +#include <stdlib.h> | |
| #include <string.h> |
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
| @0x00 | |
| ORIGIN = 0xFF8D | |
| ==Start== | |
| LDA #1 ; start counting at 1 | |
| { | |
| PHA ; save A | |
| JSR Fib | |
| CMP 0x0200 ; if fib(A)>fib(A-1), stop |
NewerOlder