FrOSt-Foundation / cFrOSt

FrOSt, but in C
4 stars 0 forks source link

Regroup all asm calls into functions and declare all of them inline #22

Open L3nn0x opened 8 years ago

Yamakaky commented 8 years ago

inline is useless, the compiler with -Os already auto-inline. They are still some __asm in drivers/ because hwi is complicated: it can use variable registers on input and output and modify memory. I'm sticking to inline asm for now, I will refactor it when I will know better what to do.