minirop

Results 17 comments of minirop

I gave it a go (before reading that ticket) and not much work was necessary to make it compile (it starts but I don't have doom.cue so I can't check...

If you look at https://github.com/minirop/arc-reader/blob/master/bse.c#L32 you'll see that only the 64 first bytes are decrypted. A simplified example would be: let say you have the number from 0 to 15...

that's because, BSE is an "encryption" over the others. If you decrypt this file, you'll get a (I suppose) a DSC file. See https://github.com/minirop/arc-reader/blob/master/main.c#L59, I first check if it's BSE...

my code is a rewrite of a code written in D that I found years ago, I didn't know they changed the format. If you have _knowledge_ I'm open. (I...

thanks. I'll give it a try sooner or later. :+1:

you speak about the ISO document? not really useful since there are already LAME for decoding mp3.

for 0x0601, windows does not have a "WIN_7" macro. for the "10", the example on MSDN uses `#define MAXTOUCHES 10` but I found `GetSystemMetrics(SM_MAXIMUMTOUCHES)` to query the hardware.

Unices hid folders starting with a dot. Lookslike its "Command – Shift – [period]" to toggle the visibility of those files.

any number between `0x7ff8000...000` and `0x7fffff...fff` is a quiet NaN (IIRC). Why Bob went with `0x7ffc0...000`? only him can answer.

we could also add optional typing. e.g.: ``` foreign class Vec3 { construct new( x, y, z ) {} foreign *( Vec3 rhs ) // or foreign +( rhs :...