moon-chilled

Results 45 comments of moon-chilled

Here's an idea. Write a compiler for a *very* simple, minimal language in asm. Then use that language to write a compiler for a slightly more complex language with more...

Makefiles are actually quite easy to make in most cases.

Github has guidelines that your language has to have I think at least 100 (or so) repos with your language before they include it.

There is a portable version using setjmp/longjmp (look at the second half of the file); unfortunately, because longjmp tries to be clever, it causes problems when optimizations are enabled, and...

The other problem with a switch/case-based version is that you need to have another macro to put a closing brace at the end of the function. Which is not a...

Can you elaborate on why you can't use the gcc extensions? Using MSVC? Or on an embedded platform? This can be implemented safely using relatively trivial assembly routines; if that...

So if I make a version which uses amd64 assembly (masm syntax, I guess?), would that work for you?

Yes, I actually made pretty much that, when I was testing initial versions. But I canned it because `__asm` only works with 32-bit msvc, and I don't really care about...

> subchannel hinting for font rendering why...

[Here](http://lpaste.net/175164)'s what I thought a simple plugin might look like, as inspiration for when/if plugins are actually implemented. Aside from that, here are some methods, not really organized, that might...