1
0
mirror of https://github.com/simh/simh.git synced 2026-04-14 07:50:15 +00:00

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 Based on the SIMH package written by Robert M Supnik
@@ -257,3 +258,4 @@ void Write (uint32 ea, uint32 dat)
S[ea] = dat & MMASK; S[ea] = dat & MMASK;
return; 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 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 Based on the SIMH package written by Robert M Supnik