Monthly Archives: December 2014

Portable BitFields Using C++11

There are lots of reasons for using C++'s bit field feature. Perhaps you need a more compact way to represent your data structures, maybe you need to use them to interact with hardware, or if you're writing an emulator, maybe you want to use them to efficiently represent the hardware that you're emulating. The list goes on...

Read More...