Skip to content

Commit

Permalink
Revert "sources reorg"
Browse files Browse the repository at this point in the history
This reverts commit 70e6f21.
  • Loading branch information
superg committed Dec 7, 2023
1 parent 22f6011 commit b635776
Show file tree
Hide file tree
Showing 14 changed files with 618 additions and 631 deletions.
5 changes: 2 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,7 @@ target_sources(redumper
"cd/cdrom.ixx"
"cd/ecc.ixx"
"cd/edc.ixx"
"cd/offset_manager.ixx"
"cd/protection.ixx"
"cd/scrambler.ixx"
"cd/split.ixx"
"cd/subcode.ixx"
"cd/toc.ixx"
"crc/crc.ixx"
Expand Down Expand Up @@ -179,11 +176,13 @@ target_sources(redumper
"drive.ixx"
"hash.ixx"
"info.ixx"
"offset_manager.ixx"
"options.ixx"
"redumper.ixx"
"rings.ixx"
"rom_entry.ixx"
"skeleton.ixx"
"split.ixx"
"version.ixx"
)

Expand Down
4 changes: 1 addition & 3 deletions cd/cd_dump.ixx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module;
#include <algorithm>
#include <bit>
#include <cstdint>
#include <filesystem>
#include <format>
Expand Down Expand Up @@ -32,7 +31,6 @@ import utils.file_io;
import utils.logger;
import utils.misc;
import utils.signal;
import utils.strings;



Expand Down Expand Up @@ -365,7 +363,7 @@ uint32_t state_from_c2(std::vector<State> &state, const uint8_t *c2_data)
if(c2_quad)
{
state[i] = State::ERROR_C2;
c2_count += std::popcount(c2_quad);
c2_count += bits_count(c2_quad);
}
}

Expand Down
269 changes: 0 additions & 269 deletions cd/protection.ixx

This file was deleted.

1 change: 0 additions & 1 deletion cd/toc.ixx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import crc.crc16_gsm;
import scsi.mmc;
import utils.endian;
import utils.misc;
import utils.strings;



Expand Down
1 change: 0 additions & 1 deletion drive.ixx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import utils.endian;
import utils.file_io;
import utils.logger;
import utils.misc;
import utils.strings;



Expand Down
Loading

0 comments on commit b635776

Please sign in to comment.