Subversion Repositories SvarDOS

Rev

Show changed files | Details | Compare with Previous | Blame | RSS feed

Filtering Options

Rev Age Author Path Log message Diff
1776 219 d 17 h mateusz.viste /sved/trunk/ refactored fopen into a dedicated pragma to save 40 bytes of RAM + preserving DX during savefile to avoid register trashing  
1775 219 d 18 h mateusz.viste /sved/trunk/ version bump to 2024.1  
1773 219 d 19 h mateusz.viste /sved/trunk/ fixed /t, no more freezing  
1760 222 d 18 h mateusz.viste /sved/trunk/ slight reorganization to save a few bytes and get the UPXed binary back under 6K  
1759 222 d 19 h mateusz.viste /sved/trunk/ tab inserts blanks until nearest 8-chars boundary  
1580 322 d 2 h mateusz.viste /sved/trunk/ renamed a few functions for better consistency  
1579 322 d 2 h mateusz.viste /sved/trunk/ fmemmove() handles memory overlaps  
1578 322 d 3 h mateusz.viste /sved/trunk/ dos_write() moved to a pragma aux routine  
1577 322 d 4 h mateusz.viste /sved/trunk/ moved dos_write() to main sved.c file  
1576 322 d 4 h mateusz.viste /sved/trunk/ dos_resizeblock() moved to a pragma aux routine  
1575 322 d 5 h mateusz.viste /sved/trunk/ moved couple of memory-related functions to main sved.c file  
1574 322 d 5 h mateusz.viste /sved/trunk/ dos_read() moved to a pragma aux routine  
1573 322 d 6 h mateusz.viste /sved/trunk/ dos_fclose() moved to a pragma aux routine  
1572 322 d 6 h mateusz.viste /sved/trunk/ dos_allocmem and dos_freemem functions replaced by pragma aux routines  
1568 323 d 19 h mateusz.viste /sved/trunk/ fmemmove: smaller footprint  
1565 323 d 19 h mateusz.viste /sved/trunk/ replaced fopen with an inline asm routine (smaller codesize)  
1560 323 d 20 h mateusz.viste / rollback of erronouse rev 1559  
1559 323 d 20 h mateusz.viste / added a directory for wmincrt by Bernd Boeckmann  
1557 324 d 3 h mateusz.viste /sved/trunk/ simplified a few functions for smaller footprint  
1556 324 d 4 h mateusz.viste /sved/trunk/ replaced Open Watcom startup and clib by custom code (thx to Bernd Boeckmann for invaluable pointers about Watcom's startup)  
1555 324 d 20 h mateusz.viste /sved/trunk/ stdlib.h no longer needs to be included  
1552 329 d 6 h mateusz.viste /sved/trunk/ CTRL+X and CTRL+V were not marking the file as "modified"  
1551 329 d 7 h mateusz.viste /sved/trunk/ take care to preserve the id of the file slot when closing/loading file  
1550 329 d 7 h mateusz.viste /sved/trunk/ dropping two unnecessary far pointers  
1549 329 d 7 h mateusz.viste /sved/trunk/ got rid of a global slot id variable to save some bytes of ram  
1548 329 d 8 h mateusz.viste /sved/trunk/ memory micro optimizations  
1547 329 d 19 h mateusz.viste /sved/trunk/ do not propose to save-on-quit when file does not have a name yet  
1545 329 d 20 h bernd.boeckmann /sved/trunk/ Fix compile errors under Watcom 2.0 beta (WinNT)

bzero is actually declared in strings.h (with an s).
Maybe replace by memset, as suggested in the documentation?

In the makefile, -bt=dos is needed if compiling under NT. It should not harm under DOS.
 
1544 329 d 21 h mateusz.viste /sved/trunk/ minor size optimization  
1543 330 d 1 h mateusz.viste /sved/trunk/ removed the DOS 2.x hack, now mdr_dos_truename() performs a string copy when INT 21h,AH=60h fails  
1541 330 d 1 h mateusz.viste /sved/trunk/ savefile() is responsible for modflag reset  
1539 330 d 3 h mateusz.viste /sved/trunk/ modified files can be saved at exit time with the space key  
1538 330 d 7 h mateusz.viste /sved/trunk/ saved 6 bytes of footprint by making the original_breakflag variable static  
1537 330 d 7 h mateusz.viste /sved/trunk/ improved compatibility with DOS 2.x  
1532 401 d 21 h mateusz.viste /sved/trunk/ version bump before release  
1473 415 d 22 h mateusz.viste /sved/trunk/ bumped version  
1461 421 d 19 h mateusz.viste /sved/trunk/ replaced _fmemset() by explicit assignments of zeroed values (saves 16 bytes of footprint)  
1454 421 d 21 h mateusz.viste /sved/trunk/ simplified eol handling during savefile  
1453 421 d 22 h mateusz.viste /sved/trunk/ fixed saving to new file passed on command-line  
1450 422 d 2 h mateusz.viste /sved/trunk/ abort with error when an invalid filename is given as argument (sved *)