emulation

Android emulator generates a very annoying error

ぃ、小莉子 提交于 2019-12-21 14:52:31
问题 It happens from time to time and really annoying. The system and application which I'm trying to test are still working, but the message prevents me from testing and it is annoying because happens from time to time. The message says: The process android.process.acore has stopped unexpectedly. Please try again. Emulator's target name: "Google APIs (Google inc.)" OS version: 15 (4.0.3) 回答1: I had the same problem with Android 4.0 I think that you run the AVD with the default settings. The

Virtual Machine Acceleration for Android Emulator [closed]

吃可爱长大的小学妹 提交于 2019-12-21 12:58:26
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . I'm attempting to configure the new Android Virtual Machine Acceleration. I'm following the steps outlined here. I get to the point where I need to execute: <sdk>/extras/intel/Hardware_Accelerated_Execution_Manager/IntelHAXM.exe. When I try and run the installer for this, it fails and says " VT not present: Your

Add ringtones in android emulator

北慕城南 提交于 2019-12-21 12:19:12
问题 Does anyone know how to add/download a ringtone or an mp3 sound to an android emulator? 回答1: Go to DDMS in Eclipse , click the File Explorer tab and navigate to mnt/sdcard . Create a new folder by clicking the Plus icon called ringtones . Then click on the "Push a file on to the device" icon and choose your file. You may need to restart the emulator. 回答2: From Eclipse: Click on Window -> Open Perspective -> DDMS Note: First start the emulator, so its contents will be available under File

Chrome Responsive Emulator - How to default zoom to 100%

落花浮王杯 提交于 2019-12-21 07:06:15
问题 One of the most annoying things I encounter on a daily basis is constantly having to reset the zoom of the chrome device emulator. For whatever reason, each time I change the device selection, the zoom changes from 100% to the "Fit to Window" size, which is always less than 100% and renders the page and text so tiny its unusable. I've seen the "Edit" menu under the device listing, and this is where I would expect to find the setting to always default the zoom to 100%, however, I'm not seeing

How to write a virtual machine [closed]

最后都变了- 提交于 2019-12-21 05:05:24
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 8 years ago . I would like to learn how to write a small emulator/virtual machine. Does anyone know a good tutorial or a simpler project than qemu

Simulate an incoming call from a private number

a 夏天 提交于 2019-12-21 04:49:19
问题 How can I simulate an incoming call from a private number -- in an emulator? 回答1: connect to your PC using telnet on the port of your emulator, e.g. telnet localhost 5554 and use the gsm call command with a number of # instead of digits gsm call # and you'll receive your unknown call on the emulator's phone. 来源: https://stackoverflow.com/questions/10004162/simulate-an-incoming-call-from-a-private-number

Is it possible to access the Azure emulator from another computer on the same network?

三世轮回 提交于 2019-12-21 03:48:14
问题 I'm running Windows 7 (x64) with VS 2010 SP1 and the Windows Azure SDK 1.5. I'd like to be able to debug a web application on an iPhone connected to the same network to shorten debug cycles. IIS is running on this machine and can see that a temporary site is being created when I debug the Azure project. Is there a way to add an additional binding to the IIS site so that I can connect from the the iPhone when the debug is started? I can manually add a binding once the debugger starts up but

haxm hangs emulator on osx

随声附和 提交于 2019-12-21 02:53:08
问题 After installing Intel HAXM on my osx 10.6.8, eclipse juno, adt 21.1.0 I am not able to run any of the emulators. The emulator process fries my cpu as in: where cpu usage never goes below 100%. Yet I have a huge black screen on the emulator. HAXM extension does not throw any errors. At console, I read [2013-04-02 20:09:58 - myapp] Launching a new emulator with Virtual Device 'x86' [2013-04-02 20:10:03 - Emulator] HAX is working and emulator runs in fast virt mode [2013-04-02 20:10:07 - myapp]

Emulator Framework

不羁岁月 提交于 2019-12-21 02:37:07
问题 Are there any good open source frameworks for developing computer system emulators? I am particularly interested in something written in Python or Java that can reduce the effort involved in developing emulators for 8-bit processors (e.g. 6502, 6510, etc.). 回答1: Isn't the 6510 in the C64? You might be able to make use of the java libraries that emulate c64 code http://www.dreamfabric.com/c64/ http://www.jac64.com/jac64-java-based-c64-emulator.html If you aren't afraid of C++ try this general

How can I use Bochs to run Assembly code?

心已入冬 提交于 2019-12-21 02:21:16
问题 I want to use Bochs as an 8086 emulator. Is there an easy way to do this? What I want is something like emu8086 (http://www.emu8086.com/). 回答1: If the initial part of your program fits in 512 bytes, and you don't mind restricting yourself to BIOS calls, in / out instructions, and writing to magic memory locations for I/O... Then yes! Assuming you're using NASM, here's a goofy example... (Warning: my 16-bit assembly skills are not very great and kind of rusty, so it might not be the best code.