Skip to main content

Assembly++

Alsalam alikom wa ra7mat allah wa barakatoh

It's time for publishing... at least as we planned to.. but for our bad luck.. it's exaaaaaaaaaams' time so we have so limited time to complete the googlepages we started and to put a well formed documentation online..

But let me tell u the general Ideas we tried to demonstrate:
OOAssembly as briefly described before Here

Let me tell u an example for the language :

class Pixel
public dword x
public dword y
endClass
class Window : Pixel
public proc Initialize
...
...
endProc
public proc PutPixel
...
...
endProc
endClass
class Main
proc Main
Window wnd
call wnd.Initialize

mov ax, #3
mov wnd.X, ax
mov wnd.Y, ax
call wnd.PutPixel
endProc
endClass

This is assembly yes.. expected output size.. yes, reliable..yes, readble.. yesss, powerful.. yesss
this example demonstrates many things..
1- Inheritance : child classes contains parent's members with no dublicate code..
2- VGA Memory, u have 128 x 128 pixels, 4-bit color each memory.. that is about 8Kb memory.. any change in it will affect the output window..
3- Dynamic memory Allocation.. Window wnd is dynamically created in run time wnd will contain a pointer to the created object.. any proc can access it's local variables as offest from "loc" which is a pointer to the start address allocated for this process.. or can access it's classes member as offset of "this" which is a pointer to the start address allocated for this class instance..

- Compiler output structure :
We don't output any variables that the user created.. all variables we use r
last : Data 0
this : Data 0
loc : Data 0
tmp : Data 0

last is a pointer to the last allocated memory.. tmp is used as a temporary space for some further calculations...


This was a brief about the language and the compiler..

Another thing is the Debugger
U can debug forward or backword.. step by step or till breakpoint or whole program run..
backword navigation is smartly implemented.. we don't take snapshot of all variables and memory locations.. we keep track of the changes only...
we have watch.. quickwatch.. values inside objects of classes.. or address of the class.... etc..
stepping can be on UserLines (that OO Code written above), or on generated Assembly, or on MicroOperations level...

Another thing is dynamically debugging on a Flash model for the Computer Design... u can c leds on the registers changed and u can see the new value of them u can also c which Control Lines r currently active...etc...

this is for now.. Let's study a little :) ...

Alsalam alikom wa ra7mat allah wa barakatoh

Comments

  1. This comment has been removed by a blog administrator.

    ReplyDelete

Post a Comment

Popular posts from this blog

Windows7 adds Math Input Panel

Alsalam alikom wa ra7mat Allah wa barakatoh… I was reading a windows team post about Input Panels improvements in Windows7 [ here ]. When at the end I saw a very interesting –intuitive if you wish- new thing… which is, as you guessed, the Math Input Panel… Yes, that crappy font is mine… I “drew” that by mouse as I don’t have a tablet pen/pc. You can then paste it directly into word and it’ll recognize it as an editable equation… During my tests, the output panel (the top part) hanged, but I liked that the drawing panel was still responsive and I could still write/erase… till the top one started to respond again… One other thing to know, after you click Insert (that button down there) it copies the equation in MathML [ Wikipedia link ] format.. which is a standard way of representing equations and hence any application that recognizes the format can insert it not as an image but as a nice editable equation… If you think it recognized something wrong, you can click “Sele...

What do you do? and how do you do it?

Alsalam alikom wa ra7mat Allah wa barakatoh I've remembered these two questions a couple of minutes ago, they were mentioned in a movie called "The Pursuit of Happyness" and as you see Happyness is written intentionally with 'y' but that's another story! The scene was that the hero who was a depressed poor guy was walking in the street then found a guy parking his very nice & expensive car, he stopped him and asked him "may I as you two questions..." "What do you do? and how do you do it?" Away from the scene and how things went on in the movie, the question that came to me was why don't I ask myself the same questions.. it's not that I'm successful or something but my point is to try to analyze what "were" my goals during my past life... and what did I do to reach the state I am in now -fail/success/progress...- I believe what brought this to my mind is watching -again- Steve Jobs's motivational speech when h...

Question Google Chrome Process Isolation Model..

Alsalam alikom wa ra7mat Allah wa barakatoh Google once published this comics book about Google chrome (their Open Source Web Browser) I've linked to one page that I'm concerning about for now... Page 4, Google Chrome Comics Book It explains that Chrome will have separate process per tab, away from the benefits/concerns about this... I was accidently checking chrome's task manager (Shift + Esc) and found something that -apparently- violates this rule... As you see, tab1 process has actually spanned 3 tabs... which is a similar behavior to what IE8 does... I'm not quite sure why this happens in Chrome... but it's just a question to ask... Thanks, Haytham