serial port initialzation and interrupts


I have assembly program for displaying a data on LEDs that saved in EEPROM.
I want assembly code for serial communication that can recieve data from serial port and save it in the EEPROM or RAM.
i.e. program for initialization and interrupts for serial port

thank

Comments

  • [b][red]This message was edited by MI_7 at 2003-5-16 3:54:25[/red][/b][hr]
    :
    : I have assembly program for displaying a data on LEDs that saved in EEPROM.
    : I want assembly code for serial communication that can recieve data from serial port and save it in the EEPROM or RAM.
    : i.e. program for initialization and interrupts for serial port
    :
    : thank
    :

    I've made a program for an comport mouse, might be of use... ;)
    http://www.interactive-os.com/assembly.txt

    BASIC stuff:
    send:
    mov dx, 0x3f8
    out dx, al

    receive:
    mov dx, 0x3f8
    in al, dx

    And: I think you need the ralf brown interruptlist
    (for all the info on that code)





  • : [b][red]This message was edited by MI_7 at 2003-5-16 3:54:25[/red][/b][hr]
    : :
    : : I have assembly program for displaying a data on LEDs that saved in EEPROM.
    : : I want assembly code for serial communication that can recieve data from serial port and save it in the EEPROM or RAM.
    : : i.e. program for initialization and interrupts for serial port
    : :
    : : thank
    : :
    :
    : I've made a program for an comport mouse, might be of use... ;)
    : http://www.interactive-os.com/assembly.txt
    :
    : BASIC stuff:
    : send:
    : mov dx, 0x3f8
    : out dx, al
    :
    : receive:
    : mov dx, 0x3f8
    : in al, dx
    :
    : And: I think you need the ralf brown interruptlist
    : (for all the info on that code)
    :
    :
    :
    :
    :
    :
    can i have it because i have a bit problem doing it out,please can i have a copy ,thankz a lot.
  • : : [b][red]This message was edited by MI_7 at 2003-5-16 3:54:25[/red][/b][hr]
    : : :
    : : : I have assembly program for displaying a data on LEDs that saved in EEPROM.
    : : : I want assembly code for serial communication that can recieve data from serial port and save it in the EEPROM or RAM.
    : : : i.e. program for initialization and interrupts for serial port
    : : :
    : : : thank
    : : :
    : :
    : : I've made a program for an comport mouse, might be of use... ;)
    : : http://www.interactive-os.com/assembly.txt
    : :
    : : BASIC stuff:
    : : send:
    : : mov dx, 0x3f8
    : : out dx, al
    : :
    : : receive:
    : : mov dx, 0x3f8
    : : in al, dx
    : :
    : : And: I think you need the ralf brown interruptlist
    : : (for all the info on that code)
    : :
    : :
    : :
    : :
    : :
    : :
    : can i have it because i have a bit problem doing it out,please can i have a copy ,thankz a lot.
    :

    ?? what do you mean ??
    the basic's of the com mouse stand in the link above?
  • : : : [b][red]This message was edited by MI_7 at 2003-5-16 3:54:25[/red][/b][hr]
    : : : :
    : : : : I have assembly program for displaying a data on LEDs that saved in EEPROM.
    : : : : I want assembly code for serial communication that can recieve data from serial port and save it in the EEPROM or RAM.
    : : : : i.e. program for initialization and interrupts for serial port
    : : : :
    : : : : thank
    : : : :
    : : :
    : : : I've made a program for an comport mouse, might be of use... ;)
    : : : http://www.interactive-os.com/assembly.txt
    : : :
    : : : BASIC stuff:
    : : : send:
    : : : mov dx, 0x3f8
    : : : out dx, al
    : : :
    : : : receive:
    : : : mov dx, 0x3f8
    : : : in al, dx
    : : :
    : : : And: I think you need the ralf brown interruptlist
    : : : (for all the info on that code)
    : : :
    : : :
    : : :
    : : :
    : : :
    : : :
    : : can i have it because i have a bit problem doing it out,please can i have a copy ,thankz a lot.
    : :
    :
    : ?? what do you mean ??
    : the basic's of the com mouse stand in the link above?
    :
    the whole code if you have,i'm refering to the serial port.
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories