Niklas Rother

Results 25 issues of Niklas Rother

It would be nice if it would be possible to mark SQL queries in some way to find them in the Panel if there are many of them. Maybe one...

enhancement
sql_panel

It would be nice, if bake templates were included, so that the baked templates would automatically contain the correct Bootstrap markup (for the sidebar etc.). I did some work in...

enhancement

As requested in #145 a much needed feature (for me at least) would be peek/poke/expect support on memories. This is currently fully supported in Treadle, but not exposed in the...

The current implementation of `neo430_bswap` seems to be buggy. In my case, the compiler selected a totally unrelated register to call `swpb` on (not the one containing `a`), which obviously...

The [attached files](https://github.com/cpc/tce/files/9443979/ttabug.zip) will produce an error message in `ttasim-tandem`: ``` rother@pikachu:~/Documents/TTA/GBP_TTA/tta_test$ ttasim --version ttasim - TCE Simulator command line interface 1.25-r4248 rother@pikachu:~/Documents/TTA/GBP_TTA/tta_test$ ttasim-tandem baseline.adf test.tpef SIMULATION ERROR DETECTED (PCs...

When trying to compile a program using tcecc I get the following error message: ``` rother@pikachu:~/Documents/TTA/GBP_TTA/tta_bug$ tcecc --version tcecc - TCE retargetable compiler 1.25 rother@pikachu:~/Documents/TTA/GBP_TTA/tta_bug$ tcecc -x c++ -O3 -a...

`pairs()` iterates over all key inside a tables. Since C# objects are `userdata`, `pairs` does not work. These is a metamethod called `__pairs` so it ~~should~~ might be possible to...

enhancement

I would be great if we would have a sample project working as a showcase for some featues.

enhancement

This fails: ``` csharp dynamic tab = lua.NewTable("tab"); dynamic mt = lua.NewTable("mt"); mt.__call = new Func((t) => "call no args"); tab.SetMetatable(mt); lua.tab()); //fail ``` ``` System.InvalidCastException: Das Objekt des Typs...

We could implement Methods for getting values without using the Metatables like Lua does. In Lua these functions are called `rawget()` and `rawset()`.

enhancement