Skip to content
#

arm

Here are 1,668 public repositories matching this topic...

ellemlabs
ellemlabs commented Dec 20, 2019

The following code compiles without problem:

func main() {
	ch := make(chan bool)
	js.Global().Call("setTimeout", js.FuncOf(func(this js.Value, args []js.Value) interface{} {
		println("sending")
		ch <- true
		println("sent")
		return nil
	}), 2000)
	println("waiting")
	<- ch
	println("done")
}

When executed in the browser, the following is outputted:

waiting
s
jroweboy
jroweboy commented Apr 3, 2019

Overview

As suggested in #4623, Citra should support binding a hotkey to activate the frontend microphone implementation. Games that use the microphone tend to enable the mic while launching, even if the game is not going to read the data from the shared page till much later.

My personal design suggestions for implementors:

Support for this feature should fully stop any input stre

cnheitman
cnheitman commented Nov 27, 2019

There seems to be an issue with update_flags on some ARM instruction (at least for ADC and SBC). More precisely, Capstone reports update_flags as true when it should be false (according to ARM reference manual).

The following code snippet shows the issue:

from capstone import *
from capstone.arm import *

CODE = [
    b"\x03\x00\xa1\xe0", # adcal r0, r1, r3
    b"
radare
radare commented Feb 23, 2017

i don't get why the size in the memorymap is 128bits when the address is 64bit. is there any 128bit architecture supported? hwaddr should be 128 too. to simplify everything should be ut64

typedef uint64_t hwaddr;

...

struct MemoryRegion {
...
    Int128 size;
    hwaddr addr;
...
``
ivg
ivg commented Feb 27, 2020

Our documentation site is always lagging behind as updating the docs is a non-trivial task that has to be automated. Setting up the Travis job for building wouldn't be trivial (we probably won't fit into the time constraints), but we can use GitHub actions and host a documentation builder on one of our servers. We shall update both bap documentation and Primus Lisp docs.

feutl
feutl commented Sep 4, 2019

After running NC with NCP for more then a year with over 2 million files stored on it, I asked myself if the mysql/mariadb DB needs to be maintained?
I searched the internet and the simplest solution I found was using

sudo mysqlcheck -o --all-databases

This reduced the DB size from around 950MB to a little over 800MB and NC seems to be a little more responsive (but this could homeopat

Improve this page

Add a description, image, and links to the arm topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the arm topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.