Ondřej Ždych
Ondřej Ždych
Oh yes. It won't work with older versions of node. Therefore failed build for node v0.8...
Hi @patricklodder, it's not a problem to retain callback style along with the proxy feature. Going to rewrite that. I will describe the usage of proxy feature in `README.md` as...
Hi, will be this issue solved? I would appreciate this. Thanks in advance, O.
Implemented in my fork: https://github.com/zdychacek/node-detective I can create PR.
@casr But what about non-standard features (stage < 4) which are already supported through Babel transformations? Optional chaining operator and do expressions, to name a few.
@JuliusCaesar12 Make sure you popped `eax` in `isr_common_stub` after `isr_handler` call, respectively `ebx` in `irq_common_stub`. There should be 2x register pop: ```asm isr_common_stub: pusha ... cld call isr_handler pop eax...
Your problem could be caused by not loading whole kernel code into memory. How many sectors do you load from disk in `load_kernel` (`dh` register)? Try this: https://github.com/cfenollosa/os-tutorial/issues/31
You can get rid of that warning using explicit cast conversion: `unsigned char *vidmem = (unsigned char *)VIDEO_ADDRESS;` Post your repo link, so I could clone and try it.
You can look at my fork. This [commit](https://github.com/zdychacek/GoGdb/commit/d7d2f0fa82e3616cae1b9b26f0d04652efdfa1d1) added `-gcflags` (hardcoded).