by shigemk2

当面は技術的なことしか書かない

2014-05-19から1日間の記事一覧

8086 メモリを直接指定 #ikebin

let aout = System.IO.File.ReadAllBytes "write-6.out" let read16 (a:byte[]) b = (int a.[b]) ||| ((int a.[b + 1]) <<< 8) let write16 (a:byte[]) b c = a.[b] <- byte c a.[b + 1] <- byte (c >>> 8) let tsize = read16 aout 2 let dsize = read16 ao…

RUNNING_PIDについて

Play frameworkのpidファイル「RUNNING_PID」ファイルの場所を変える(v2.0.4以降) | GENDOSU@NET デフォルトだとプロジェクトディレクトリの直下にRUNNING_PIDというファイルが作成されます。 中身を見ると、Play Frameworkアプリケーションを動かしている…