Is it possible to compile HxC Floppy Emulator to work on Android (on android tablet's)?
Thank you.
HxC Floppy Emulator for Android?
Re: HxC Floppy Emulator for Android?
If the particular device has an standart shuggart bus, PC floppy bus, Amiga floppy bus then IMHO it should work.test29 wrote:Is it possible to compile HxC Floppy Emulator to work on Android (on android tablet's)?
Thank you.
Re: HxC Floppy Emulator for Android?
No the question is : the converter can be ported on Android (http://www.android.com/)?TFM wrote:If the particular device has an standart shuggart bus, PC floppy bus, Amiga floppy bus then IMHO it should work.test29 wrote:Is it possible to compile HxC Floppy Emulator to work on Android (on android tablet's)?
Thank you.
Well, if there are an ansi-c compiler available (gcc for example) on it, this should be possible.
-
- Posts: 17
- Joined: Sat Oct 16, 2010 11:10 am
It's a little different than that, fortunately.bradn wrote:I think you would need a way to compile C code to java bytecode, or to install normal c libraries and all that stuff on android. If I understand correctly, android is a butchered java running directly under the linux kernel.
Android uses a modified Linux kernel; most user-visible applications run in the Dalvik virtual machine, and if you want to expose a UI, you basically need to have at least part of your application in that fashion, using the Android SDK .
However, you can also write C code, using the Android NDK.
The two – SDK and NDK – go hand-in-hand, so if you have part of your application that is/needs to be written in C, you'd end up using both - the NDK for the C bits, and the SDK for the UI-and-similar bits.
Best wishes,
// Christian