1#include <avrio.cc> 2 3int main() { 4 5 byte* vm = (byte*) 0xF000; 6 for (int i = 0; i < 4000; i += 2) { 7 vm[i] = i>>1; 8 vm[i+1] = 0x07; 9 } 10}