qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

meson.build (215B)


      1 avr_ss = ss.source_set()
      2 avr_ss.add(files('boot.c'))
      3 avr_ss.add(when: 'CONFIG_AVR_ATMEGA_MCU', if_true: files('atmega.c'))
      4 avr_ss.add(when: 'CONFIG_ARDUINO', if_true: files('arduino.c'))
      5 
      6 hw_arch += {'avr': avr_ss}