Volodymyr Shymanskyy

Results 335 comments of Volodymyr Shymanskyy

It looks like `mbed OS 5` support should be enabled for all nrf51 variants with SRAM >= 32Kb

@valeros @ivankravets was this done yet?

I was able to extract long section names. Here's an example: ```py import pefile import mmap def show_sections(fn): with open(fn, 'rb') as f: raw = mmap.mmap(f.fileno(), 0, access=mmap.ACCESS_READ) pe =...

The bug is caused by some (incomplete) logic in module initialization. As a side note, M3 engine currently lacks a lot of things, and memory management is one of them....

@porky11 please check out #3

Could you please try with my fork of the engine: https://github.com/vshymanskyy/wasm3 ? There's a high chance it was fixed.

@joostmarkerink I think i didn't commit some of my changes to the master branch ;) Basically, it looks like duplicate of #1. Let me re-check.

Yeagh thanks for pointing this out. It's working now: ![image](https://user-images.githubusercontent.com/1506708/68531132-bdb35880-0317-11ea-99f5-f26c3b3fca39.png) Try the latest master branch of my fork.

@maxgerhardt please also check out https://github.com/vshymanskyy/w600tool This should be a more reliable solution. I'm also looking forward to test your integration via PIO! Please let me know.

I'm really interested in this. While working on ViperIDE for MicroPython ( https://viper-ide.org ) I integrated the `mpy-cross` compiler using WebAssembly and it does report syntax errors. But it's not...