Skip to content

umjammer/kdk-emulator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

16 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Kindle Emulator with KDK

I can not wait for the release of KDK ;-P

Buzz

NES emulator released!

KDK NES ;-P

source code

original

Kindlet

public class KindleTestApp implements Kindlet {

    private MyView view;

    private KindletContext context;

    /** */
    public void create(KindletContext context) {
        try {
            view = new MyView();
            this.context = context;
            this.context.getRootContainer().add(view); // i guess...
        } catch (Exception e) {
e.printStackTrace(System.err);
        }
    }

    /** */
    public void start() {
        new Thread(view).start();
    }

    /* */
    public void stop() {
    }

    /* */
    public void destroy() {
    }

    /** */
    private class MyView extends KComponent implements Runnable {
      :

Kindle Emulator

How to Run

 $ # java vavi.apps.kindlet.KindletViewer your_Kindlet_class
 $ java vavi.apps.kindlet.KindletViewer vavi.games.tetris.TetrisApp

You can download Tetris for KDK from here!

Kindle Tetris

Releases

No releases published

Languages