using Assembly(language) in a UWP App? -


i wondering if possible "use" assembly language inside c++ project go target uwp?

i going rewrite old atari game dasm masm, want end product run in uwp.

i have ran masm code in c++ console app, before ahead of myself wanted check community if possible in uwp.

thoughts?

c++ universal windows platforms apps compile native code, there's no reason why shouldn't able able include assembly language files in c++ uwp project. should able use assembly language in c# project indirectly using .net's p/invoke , com interoperability facilities, can c++ code. in theory @ least translate assembly code common intermediate language (cil) , use directly in c# project.

that said don't know if makes sense translate old atari game written in assembly different cpu architecture x86 assembly. easier translate c# or c++, whichever language you're familiar with. performance shouldn't issue.


Comments