cba54b205b
- refactor code for transfer buffer reads/writes, real mode int 0x21 calls, and assembler segment declarations - define transfer buffer size in one place - beef up error checking for transfer buffer operations (prevent buffer overflows) - also optimize such operations to transfer dword by dword where feasible
25 lines
442 B
C
25 lines
442 B
C
/*
|
|
* © 2013 David Given
|
|
* © 2022 TK Chia
|
|
* This file is redistributable under the terms of the 3-clause BSD license.
|
|
* See the file 'Copying' in the root of the distribution for the full text.
|
|
*/
|
|
|
|
#ifndef LIBSYSASM_H
|
|
#define LIBSYSASM_H
|
|
|
|
! Declare segments (the order is important).
|
|
|
|
.sect .text
|
|
.sect .rom
|
|
.sect .data
|
|
.sect .bss
|
|
|
|
.sect .text
|
|
|
|
! Size of transfer buffer, for 32-bit DPMI mode.
|
|
|
|
TRANSFER_BUFFER_SIZE = 32 * 1024
|
|
|
|
#endif
|