elks-enhanced
public
Read
Owner: themaster
Branch: master
Commits: 6893
Updated: 2026-04-19 00:15
Git CLI clone URL
git clone https://www.xt-emporium.com/git/elks-enhanced.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
elks-enhanced
/
elks
/
arch
/
i86
/
drivers
/
net
/
el3-asm.S
File editor
// // Low level routines for ELKS EtherLink III ethernet driver (3c509) // // Helge Skrivervik (@mellvik) june 2022 // #include <linuxmt/config.h> #include "arch/ports.h" #include <arch/asm-offsets.h> .code16 .data .extern current .text //----------------------------------------------------------------------------- // Read data from port //----------------------------------------------------------------------------- // void el3_insw(int port, char *data, int count) // .global el3_insw el3_insw: push %di mov %sp,%di push %es mov 4(%di),%dx // Port mov 8(%di),%cx // length (words) mov 6(%di),%di // Buffer pointer mov current,%bx mov TASK_USER_DS(%bx),%es // destination segment = user process cli word_loop: in %dx,%ax stosw loop word_loop sti pop %es pop %di ret //----------------------------------------------------------------------------- // Write data to port //----------------------------------------------------------------------------- // void el3_sendpk(int port, char *data, int count) // .global el3_sendpk el3_sendpk: push %si mov %sp,%si push %ds mov 4(%si),%dx // Port mov 8(%si),%cx // byte count mov 6(%si),%si // buffer addr cli mov %cx,%ax outw %ax,%dx // send length xor %ax,%ax outw %ax,%dx // dummy NULL word inc %cx shr %cx // make word count inc %cx and $0xfffe,%cx // make dword aligned mov current,%bx // setup for far memory xfer mov TASK_USER_DS(%bx),%ds wr_loop: lodsw out %ax,%dx loop wr_loop sti pop %ds pop %si ret //------------------------------------------------- .global el3_mdelay el3_mdelay: push %bp mov %sp,%bp mov 4(%bp),%cx // count mdly_loop: outb $0x80 // presumably approx 1us loop mdly_loop pop %bp ret
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
master
Visibility
public
Your access
Read
Remote
Configured
File activity
View file history