[Freedos-devel] Where to download FreeDOS Alpha 1 (September 16 1994)

2020-01-10 Thread Samuel V. via Freedos-devel
I need to find FreeDOS Alpha 1, which is said to contain a file called "task-lis". I need it for a much better guide on what to implement first exactly, as stated here: http://wiki.freedos.org/wiki/index.php/Releases/Alpha1 https://groups.google.com/forum/#!msg/comp.os.msdos.apps/oQmT4ETcSzU/O1

[Freedos-devel] Fw: Where to download FreeDOS Alpha 1 (September 16 1994)

2020-01-10 Thread Samuel V. via Freedos-devel
What is the outline of the task list (task-lis) and coding standards (coding) to have an idea of what was required at that development point, or at least a copy of those two files? - Forwarded Message - From: Jim Hall To: Technical discussion and questions for FreeDOS developers.

[Freedos-devel] Fw: FYI: FreeType going forward looses 8.3 naming conventions

2020-11-21 Thread Samuel V. via Freedos-devel
https://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/1.2/repos/pkg-html/doslfn.html Just run DOSLFN.COM whenever you want to access with long file name paths. DJGPP 2 seems to support LFN. - Forwarded Message - From: Mark Olesen To: Technical discussion and questio

[Freedos-devel] I need win32nasmbase.zip

2022-10-14 Thread Samuel V. via Freedos-devel
Do you have a copy of http://rs1.szif.hu/~tomcat/win32/ ? I need win32nasmbase.zip, w32nasm.zip, which no longer exist! It will help me complete my kernel/API/demo programs project at:udocproject / Profile | | | | udocproject / Profile | | | __

[Freedos-devel] Fw: Aw:  I need win32nasmbase.zip

2022-10-14 Thread Samuel V. via Freedos-devel
l.com Mail gesendet.Am 14.10.22, 22:42 schrieb "Samuel V. via Freedos-devel" : Do you have a copy of http://rs1.szif.hu/~tomcat/win32/ ? I need win32nasmbase.zip, w32nasm.zip, which no longer exist! It will help me complete my kernel/API/demo programs project at: u

[Freedos-devel] Fw: I need win32base.zip

2022-11-12 Thread Samuel V. via Freedos-devel
I have uploaded some of the main files from FTP and the site at http://rs1.szif.hu/~tomcat/win32/ here: http://master.dl.sourceforge.net/project/win32nasm-cache/Win32NASM__60c5ed87f2e79d6259e9b2846049e051..7z?viasf=1 - Forwarded Message - From: Mathi To: Samuel V. Cc: mathimaa...@y

[Freedos-devel] Live Coding YouTube channel and Zed3D compiled in NASM

2022-11-26 Thread Samuel V. via Freedos-devel
http://www.youtube.com/user/AltComp126/streams Hi. I just wanted you to know that I will be trying to translate Zed3D to NASM, to a simple reusable format here: http://master.dl.sourceforge.net/project/api-simple-completa/api.7z?viasf=1 API Simple Completa | | | | $0 | | | | | | | AP

[Freedos-devel] Fw: Linking asm with C

2023-01-13 Thread Samuel V. via Freedos-devel
Go to http://master.dl.sourceforge.net/project/api-simple-completa/api.7z?viasf=1 Look at api\bin\OS\v2020\vDPMI Run bmain.batYou need DJGPP and NASM, and set paths accordingly to execute binaries everywhere. It's an example of linking DJGPP C and NASM in an ever-growing application.

[Freedos-devel] Fw: Linking asm with C

2023-01-15 Thread Samuel V. via Freedos-devel
For example, to link DJGPP and NASM you need: Set up DJGPP:set djgpp=c:\djgpp\DJGPP.ENVset path=%path%;c:\djgpp\bin A C file: #include int main(void) {  return 0; } An ASM file:bits 32 ;Things from NASM are declared global: ;;  global _call0 ;Things from DJGPP are declared extern: ;;  ex

[Freedos-devel] Fw: Linking asm with C

2023-01-15 Thread Samuel V. via Freedos-devel
For example, to link DJGPP and NASM you need: Set up DJGPP: set djgpp=c:\djgpp\DJGPP.ENV set path=%path%;c:\djgpp\bin A C file: #include extern void call0(); int main(void) {  call0();  return 0; } An ASM file: bits 32 ;Things from NASM are declared global: ;;  global _call0

[Freedos-devel] Native SAS (SCSI) and SATA drivers?

2023-01-21 Thread Samuel V. via Freedos-devel
Does FreeDOS have programming documentation or native driversfor SAS (Serial Attached SCSI) and SATA? That seems to be oneof the few things that prevent DOS in general to work under thenewest computers, apart from a generic BIOS/video implementationlayer, and compile FreeDOS with DJGPP for be

[Freedos-devel] Contribution of Free Source Code without License for Everyone

2024-05-28 Thread Samuel V. via Freedos-devel
I have been developing low level source code over the years, and continue doing so daily:http://master.dl.sourceforge.net/project/api-simple-completa/api.7z?viasf=1 I think I could need money, books (scanned, code CD-ROMs/floppies), information, source code or other donations to continue easily,

[Freedos-devel] Need ZULIA for Hercules/CGA emulation

2024-12-18 Thread Samuel V. via Freedos-devel
I had a program for an 8088 with an Hercules cardto play games like DIGGER, DIGDUG, and any other gamesthat needed CGA, with an Hercules card. I no longer have a working 8088, I think the floppy whereI had this CGA emulator program (ZULIA) is now unreadable,I don't find the old 360K floppy drive

[Freedos-devel] Fw: Need ZULIA for Hercules/CGA emulation

2024-12-20 Thread Samuel V. via Freedos-devel
nary by looking for the hex string "BA DA 03" (mov dx, 3dah) and patch it to "BA BA 03", or maybe NOP out a back jump, my memory is foggy there as well. Good luck! On Wed, 18 Dec 2024 at 09:35, Samuel V. via Freedos-devel wrote: > > I had a program for an 8088 with an

[Freedos-devel] Free to use code project 2024

2025-01-13 Thread Samuel V. via Freedos-devel
I'm trying to make an extremely fast x86 emulator,as fast as ZSNES, NO$GMB, Nesticle, FCEU, Z26, etc.,I'm just starting but I made a simple unreal mode x86 corein 2024. I haven't find easy to use and easy to understandx86 CPU emulators. Can you give me tips on how to develop it faster? I'm profic

[Freedos-devel] Will FreeDOS work to reflash LSI SCSI SAS cards like 9300 series?

2025-05-28 Thread Samuel V. via Freedos-devel
I would like to know if FreeDOS would be comptaiblewith Broadcom/LSI/Avago reflash utilities for SCSI SAShard disk cards.___ Freedos-devel mailing list Freedos-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freedos-devel