Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ! 1
- ! 1 # 1 "test.c"
- ! 1 struct test{
- ! 2 int a;
- !BCC_EOS
- ! 3 int b;
- !BCC_EOS
- ! 4 };
- !BCC_EOS
- ! 5
- ! 6 int main()
- ! 7 {
- export _main
- _main:
- ! 8 struct test t;
- !BCC_EOS
- ! 9 t.a = 50;
- push bp
- mov bp,sp
- push di
- push si
- add sp,*-4
- ! Debug: eq int = const $32 to int t = [S+$A-$A] (used reg = )
- mov ax,*$32
- mov -8[bp],ax
- !BCC_EOS
- ! 10 t.b = 20;
- ! Debug: eq int = const $14 to int t = [S+$A-8] (used reg = )
- mov ax,*$14
- mov -6[bp],ax
- !BCC_EOS
- ! 11
- ! 12 }
- add sp,*4
- pop si
- pop di
- pop bp
- ret
- ! 13
- .data
- .bss
- ! 0 errors detected
- ~
- ~
- ~
- ~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement