Lines Matching +full:rom +full:- +full:val
1 //===- MSP430.cpp ---------------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // The MSP430 is a 16-bit microcontroller RISC architecture. The instruction set
13 // A typical MSP430 MCU has several kilobytes of RAM and ROM, plenty
16 //===----------------------------------------------------------------------===//
38 uint64_t val) const override;
62 void MSP430::relocate(uint8_t *loc, const Relocation &rel, uint64_t val) const { in relocate()
65 checkIntUInt(loc, val, 8, rel); in relocate()
66 *loc = val; in relocate()
72 checkIntUInt(loc, val, 16, rel); in relocate()
73 write16le(loc, val); in relocate()
76 checkIntUInt(loc, val, 32, rel); in relocate()
77 write32le(loc, val); in relocate()
80 int16_t offset = ((int16_t)val >> 1) - 1; in relocate()