Search:

Type: Posts; User: UncleG

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    2,917

    its not the code its windows. i have had the...

    its not the code its windows.

    i have had the same problem

    i presume you are using the GNU compiler due to your asm syntax

    if you try borland its

    asm mov ax, 013h
    asm int 10h
  2. Replies
    5
    Views
    4,455

    #include unsigned char * vga = NULL; ...

    #include <mem.h>

    unsigned char * vga = NULL; // pointer to vga mem
    vga = (unsigned char *) 0xA000; // set it

    void clearscreen (int colour) {

    memset(vga, col, (width * height)...
  3. Thread: Assembley

    by UncleG
    Replies
    5
    Views
    2,448

    binary

    to Gwargh>

    assembly is low level, but if you were to create a driver file for a device which sent pulses if 0s and 1s through the input processor port, couldn't you program your cpu in binary?
    ...
  4. Thread: Assembley

    by UncleG
    Replies
    5
    Views
    2,448

    there are asm tutorials all over the web. ...

    there are asm tutorials all over the web.

    check out spyko's demo coding page (search cos i forgot the link!)

    assembly gives you complete control over your computer.

    in fact, all of the...
  5. MISSED THIS OUT

    You have an extra } at the end of the code !

    sorry i missed that!

    UncleG
  6. FIXED THE PROBLEM

    you have this

    if (answer = 2) {

    .
    .
    .

    }
Results 1 to 6 of 6