xref: /inferno-os/module/ether.m (revision 46439007cf417cbd9ac8049bb4122c890097a0fa)
1*46439007SCharles.ForsythEther: module
2*46439007SCharles.Forsyth{
3*46439007SCharles.Forsyth	PATH:	con "/dis/lib/ether.dis";
4*46439007SCharles.Forsyth	Eaddrlen:	con 6;
5*46439007SCharles.Forsyth
6*46439007SCharles.Forsyth	init:	fn();
7*46439007SCharles.Forsyth	parse:	fn(s: string): array of byte;
8*46439007SCharles.Forsyth	text:	fn(a: array of byte): string;
9*46439007SCharles.Forsyth	addressof:	fn(dev: string): array of byte;
10*46439007SCharles.Forsyth	eqaddr:	fn(a, b: array of byte): int;
11*46439007SCharles.Forsyth};
12