Simple Processor (Assembly) Apk

Simple Processor (Assembly) Apk

Latest version 1.0
14 May 2016

Older Versions

Apk Infos

Version1.0
Rating3.9/5, based on 7 votes
Size‎252.2 KB
Requires AndroidAndroid 2.2+ (Froyo)
Author's NotesThis is a simple virtual processor built on a small number of instruction set.

About Simple Processor (Assembly) APK

Simple Processor (Assembly) APK Download for Android
Simple Processor (Assembly) APK Download for Android

Description

STRETCH YOUR IMAGINATION AND SKILL IN THE VIRTUAL WORLD OF PRIMITIVE PROCESSOR !!!

This is a simple hypothetical virtual processor built on a small number of instruction set.

You can write program in assembly like language and run it to test your program.

It has 4 general purpose registers A,B,C and D.
Instruction pointer(Program Counter) is denoted by PC.

It will display the register contents and PC value for each instruction executed.You can check the program output by inspecting the desired register value.

Instruction set consists of the following :

mov R1,R2 is [R1]<---[R2]
mov R1,N is [R1]<---N
add R1,R2 is [R1]<---[R1]+[R2]
add R1,N is [R1]<---[R1]+N
sub R1,R2 is [R1]<---[R1]-[R2]
sub R1,N is [R1]<---[R1]-N
mul R1,R2 is [R1]<---[R1]*[R2]
mul R1,N is [R1]<---[R1]*N
div R1,R2 is [R1]<---[R1]/[R2]
div R1,N is [R1]<---[R1]/N
jmp L is jump to location L
jzona L is jump to location L if [A]=0
jnzona is jump to location L if [A]!=0
jzonb is jump to location L if [B]=0
jnzonb is jump to location L if [B]!=0
jzonc is jump to location L if [C]=0
jnzonc is jump to location L if [C]!=0
jzond is jump to location L if [D]=0
jnzond is jump to location L if [D]!=0
hlt is stop

where R,R1,R2 are the any registers a,b,c or d
N is any number integer or floating point
L is the label
[R] means content of register R

You can write your own code and test it by running it.
You can stretch your imagination and extend your assembly programming logic in a constrained environment like this.

All these are *ABSOLUTELY FREE* ,*NO INAPP PURCHASES* and * NO ADS*.

This is very helpful for education purpose.

*** note : If there is any bug please report the bug to me through email.

How to install Simple Processor (Assembly) APK on Android phone or tablet?

Download Simple Processor (Assembly) APK file from ApkClean, then follow these steps:

Update Phone Settings

  • Go to your phone Settings page
  • Tap Security or Applications (varies with device)
  • Check the Unknown Sources box
  • Confirm with OK

Go to Downloads

  • Open Downloads on your device by going to My Files or Files
  • Tap the APK file you downloaded (ara.adrija.simplep-v1.0-ApkClean.apk)
  • Tap Install when prompted, the APK file you downloaded will be installed on your device.

Older Versions

1.0 (1)252.2 KB

Questions & Answers

Q: What is an APK File?

A: Just like Windows (PC) systems use an .exe file for installing software, Android does the same. An APK file is the file format used for installing software on the Android operating system.

Q: If I install an APK from this website, will I be able to update the app from the Play Store?

A: Yes, absolutely. The Play Store installs APKs it downloads from Google's servers, and sideloading from a site like ApkClean.net goes through a very similar process, except you're the one performing the downloading and initiating the installation (sideloading).
As soon as the Play Store finds a version of the app newer than the one you've sideloaded, it will commence an update.

Q: Why ApkClean.net can guarantee APK 100% safe?

A: Whenever someone wants to download an APK file from ApkClean.net, we'll check the corresponding APK file on Google Play and allow user download it directly (of course, we'll cache it on our server). If the APK file does not exist on Google Play, we'll search it in our cache.

Q: What are Android App permissions?

A: Apps require access to certain systems within your device. When you install an application, you are notified of all of the permissions required to run that application.

Don't hesitate to contact us if you have any questions or concerns.

(*) is required

User's Reivew

5 ★This is great for learning to think like assembly. I am not an expert, but this app has everything I need! Good work! EDIT: If you can, I'd love to be able to implement something like assembly "int" command, that could be used to print & read text and other stuff!