LF endings replaced with CR-LF endings

Source file LF endings replaced with CR-LF endings. GIT configuration
changed: git config --global core.autocrlf false
This commit is contained in:
Gerardo Ospina 2013-05-13 15:40:23 -05:00
parent 03d92e2fe6
commit 3e25784b99
3 changed files with 771 additions and 767 deletions

View file

@ -1,4 +1,5 @@
/* ssem_cpu.c: SSEM (Small Scale Experimental Machine) CPU simulator
/* ssem_cpu.c: Manchester University SSEM (Small Scale Experimental Machine)
CPU simulator
Based on the SIMH package written by Robert M Supnik
@ -257,3 +258,4 @@ void Write (uint32 ea, uint32 dat)
S[ea] = dat & MMASK;
return;
}

View file

@ -1,4 +1,5 @@
/* ssem_defs.h: SSEM (Small Scale Experimental Machine) simulator definitions
/* ssem_defs.h: Manchester University SSEM (Small Scale Experimental Machine)
simulator definitions
Based on the SIMH package written by Robert M Supnik

View file

@ -1,4 +1,5 @@
/* ssem_sys.c: SSEM (Small Scale Experimental Machine) simulator interface
/* ssem_sys.c: Manchester University SSEM (Small Scale Experimental Machine)
simulator interface
Based on the SIMH package written by Robert M Supnik