blob: ef826ad1a2e91372b865912ecb7875e72ef095eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "cachepc/const.h"
#define TARGET_SET 15
.global guest_start
.global guest_stop
.align(16)
.code16gcc
guest_start:
.rept L1_SIZE
nop
.endr
mov $0x00, %ax
jmp *%ax
guest_stop:
|