HxC Floppy Emulator for Android?

General discussion forum - for all that doesn't fit in any other category.
Post Reply
test29
Posts: 5
Joined: Tue Sep 29, 2009 9:00 am

HxC Floppy Emulator for Android?

Post by test29 »

Is it possible to compile HxC Floppy Emulator to work on Android (on android tablet's)?

Thank you.
TFM
Posts: 29
Joined: Fri Sep 24, 2010 6:07 pm

Re: HxC Floppy Emulator for Android?

Post by TFM »

test29 wrote:Is it possible to compile HxC Floppy Emulator to work on Android (on android tablet's)?

Thank you.
If the particular device has an standart shuggart bus, PC floppy bus, Amiga floppy bus then IMHO it should work.
Jeff
Site Admin
Posts: 8247
Joined: Fri Oct 20, 2006 12:12 am
Location: Paris
Contact:

Re: HxC Floppy Emulator for Android?

Post by Jeff »

TFM wrote:
test29 wrote:Is it possible to compile HxC Floppy Emulator to work on Android (on android tablet's)?

Thank you.
If the particular device has an standart shuggart bus, PC floppy bus, Amiga floppy bus then IMHO it should work.
No the question is : the converter can be ported on Android (http://www.android.com/)?
Well, if there are an ansi-c compiler available (gcc for example) on it, this should be possible.
bradn
Posts: 6
Joined: Tue Aug 24, 2010 2:55 am

Post by bradn »

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.
cbrunschen
Posts: 17
Joined: Sat Oct 16, 2010 11:10 am

Post by cbrunschen »

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.
It's a little different than that, fortunately.

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
Post Reply