MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / write16

Method write16

modules/commodetto/commodettoBMPOut.js:229–231  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

227 }
228
229 write16(value) {
230 this.file.write(value & 0xff, (value >> 8) & 0xff);
231 }
232 write32(value) {
233 this.file.write(value & 0xff, (value >> 8) & 0xff, (value >> 16) & 0xff, (value >> 24) & 0xff);
234 }

Callers 7

beginMethod · 0.95
writeArgsMethod · 0.80
writeCommandMethod · 0.80
writeRegisterMethod · 0.80
writeWordMethod · 0.80
readWordsMethod · 0.80
beginMethod · 0.80

Calls 1

writeMethod · 0.65

Tested by

no test coverage detected