Search found 2 matches

by javen72
Wed Jan 02, 2019 1:09 am
Forum: Development of MicroPython
Topic: Enable MICROPY_EMIT_X64/X86 with VC tool chain and Windows ABI
Replies: 3
Views: 2428

Re: Enable MICROPY_EMIT_X64/X86 with VC tool chain and Windows ABI

For the assembly files, I don't think they can be applied to mingw directly. I'm not quite familiar mingw. If I'm correct, mingw still uses gcc style assembly code, right? So ports/windows/msvc works for me. But, if necessary, I can add mingw version of assembly files in the future (I need time for ...
by javen72
Sat Dec 29, 2018 6:36 am
Forum: Development of MicroPython
Topic: Enable MICROPY_EMIT_X64/X86 with VC tool chain and Windows ABI
Replies: 3
Views: 2428

Enable MICROPY_EMIT_X64/X86 with VC tool chain and Windows ABI

I've already made it work and would like to contribute the changes back. I've read the contributing guidelines but still have a few things not clear. - VC toolchain doesn't support inline assembly in C file for 64-bit code. There have to be assembly files added to py folder (for nlr_push/jump). Does...