MCPcopy Create free account
hub / github.com/D7EAD/mkPIVM / u32

Method u32

include/mkpivm/bytecode.h:23–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21 }
22
23 void u32(std::uint32_t v) {
24 for (int i = 0; i < 4; ++i) buf_.push_back(static_cast<std::uint8_t>(v >> (8*i)));
25 }
26
27 void u64(std::uint64_t v) {
28 for (int i = 0; i < 8; ++i) buf_.push_back(static_cast<std::uint8_t>(v >> (8*i)));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected