-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Put Ethernet buffers in separate source file.
Having the Ethernet buffers in a separate source file simplifies to override their location by the user of the library.
- Loading branch information
1 parent
c98fdb5
commit ceb6200
Showing
3 changed files
with
36 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ IP65OBJS=\ | |
download_c.o \ | ||
error.o \ | ||
eth.o \ | ||
eth_buffer.o \ | ||
eth_c.o \ | ||
http.o \ | ||
http_c.o \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
; Ethernet packet buffers | ||
|
||
.export eth_outp | ||
.export eth_inp | ||
|
||
|
||
.bss | ||
|
||
; input and output buffers | ||
eth_inp: .res 1518 ; space for input packet | ||
eth_outp: .res 1518 ; space for output packet | ||
|
||
|
||
|
||
; -- LICENSE FOR eth_buffers.s -- | ||
; The contents of this file are subject to the Mozilla Public License | ||
; Version 1.1 (the "License"); you may not use this file except in | ||
; compliance with the License. You may obtain a copy of the License at | ||
; http://www.mozilla.org/MPL/ | ||
; | ||
; Software distributed under the License is distributed on an "AS IS" | ||
; basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the | ||
; License for the specific language governing rights and limitations | ||
; under the License. | ||
; | ||
; The Original Code is ip65. | ||
; | ||
; The Initial Developer of the Original Code is Per Olofsson, | ||
; [email protected]. | ||
; Portions created by the Initial Developer are Copyright (C) 2009 | ||
; Per Olofsson. All Rights Reserved. | ||
; -- LICENSE END -- |