Re: [edk2] EDK II debug question

2018-01-22 Thread Andrew Fish
edk2-devel@lists.01.org >> Subject: Re: [edk2] EDK II debug question >> >>> On 1/20/2018 4:58 AM, JUNWEN JIA wrote: >>> >>> Hi: >>> Could you please tell how to build assembly language using EDK2? >>> I tried to create a .c file in AppPkg

Re: [edk2] EDK II debug question

2018-01-22 Thread Gao, Liming
IA ; edk2-devel@lists.01.org > Subject: Re: [edk2] EDK II debug question > > On 1/20/2018 4:58 AM, JUNWEN JIA wrote: > > > > Hi: > > Could you please tell how to build assembly language using EDK2? > > I tried to create a .c file in AppPkg, but it goes like t

Re: [edk2] EDK II debug question

2018-01-22 Thread Paulo Alcantara
On 1/20/2018 4:58 AM, JUNWEN JIA wrote: Hi: Could you please tell how to build assembly language using EDK2? I tried to create a .c file in AppPkg, but it goes like this: #include Void main() { _asm{} } I used X64 to compile this project, but it seems content like _asm{} is not supported.

[edk2] EDK II debug question

2018-01-22 Thread JUNWEN JIA
Hi: Could you please tell how to build assembly language using EDK2? I tried to create a .c file in AppPkg, but it goes like this: #include Void main() { _asm{} } I used X64 to compile this project, but it seems content like _asm{} is not supported. Do I need to add extra files? And where sh