Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement the general template for all Instruction Sets #3

Open
natemago opened this issue Mar 1, 2013 · 0 comments
Open

Implement the general template for all Instruction Sets #3

natemago opened this issue Mar 1, 2013 · 0 comments
Assignees
Labels

Comments

@natemago
Copy link
Owner

natemago commented Mar 1, 2013

This consists of implementing the general template for the CPU cycle that will be executed upon one clock-tick.
The template should be something like:

@prepare_cycle@
for(var i = @start@; i< @end_count@; i++){
    var INSTR = Memory[PC];
    @do_isntr_decode@
    switch(this.state){
        case ARM:

            break;
        case THUMB:

            break;
        case THUMB_EE:

            break;
        case JAZZELE:

            break;
    }
}
@ghost ghost assigned natemago Mar 1, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant