Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


307382781cfea8ac5b4217b2d4f31a69c2c17758
[palacios.git] / misc / decoder_test / test.asm
1 [BITS 32]
2 [ORG 0x0]
3 lea eax, [ebx]
4 mov eax, [ebx]
5 mov ax, [ebx]
6 mov ax, [ebx +8*edi]
7 mov  [ebx], eax
8 mov  [ebx +4*edi], eax
9 es mov [ebx], eax
10 movsw
11 rep movsw
12
13 mov eax, ebx
14 popa
15 pusha
16 push eax
17
18
19 add eax, ebx
20 out 0x64, al
21